@mastra/core
Version:
Mastra is the Typescript framework for building AI agents and assistants. It’s used by some of the largest companies in the world to build internal AI automation tooling and customer-facing agents.
22 lines • 596 B
TypeScript
import { MastraBase } from '../base.js';
interface BuiltInModelConfig {
provider: string;
name: string;
apiKey?: string;
}
export interface TTSConfig {
model: BuiltInModelConfig;
}
export declare abstract class MastraTTS extends MastraBase {
model: BuiltInModelConfig;
constructor({ model }: TTSConfig);
traced<T extends Function>(method: T, methodName: string): T;
abstract generate({ text }: {
text: string;
}): Promise<any>;
abstract stream({ text }: {
text: string;
}): Promise<any>;
}
export {};
//# sourceMappingURL=index.d.ts.map