assemblyai
Version:
The AssemblyAI JavaScript SDK provides an easy-to-use interface for interacting with the AssemblyAI API, which supports async and real-time transcription, as well as the latest LeMUR models.
15 lines (12 loc) • 378 B
text/typescript
import { UserAgent } from "..";
type BaseServiceParams = {
apiKey: string;
baseUrl?: string;
/**
* The AssemblyAI user agent to use for requests.
* The provided components will be merged into the default AssemblyAI user agent.
* If `false`, the AssemblyAI user agent will be removed.
*/
userAgent?: UserAgent | false;
};
export type { BaseServiceParams };