@deepgram/sdk
Version:
Isomorphic Javascript client for Deepgram
24 lines • 520 B
TypeScript
type Model = {
name: string;
canonical_name: string;
architecture: string;
languages?: string[];
version: string;
uuid: string;
batch?: boolean;
streaming?: boolean;
formatted_output?: boolean;
metadata?: {
accent: string;
color: string;
image: string;
sample: string;
};
};
export type GetModelResponse = Model;
export type GetModelsResponse = {
stt: Model[];
tts: Model[];
};
export {};
//# sourceMappingURL=GetModelsResponse.d.ts.map