deep-chat-dev
Version:
Customizable chat component for AI APIs
30 lines • 699 B
TypeScript
export type TogetherTextToSpeech = {
model?: string;
voice?: string;
speed?: number;
};
export type TogetherImages = {
model?: string;
width?: number;
height?: number;
steps?: number;
n?: number;
seed?: number;
response_format?: 'url' | 'base64';
};
export type TogetherChat = {
system_prompt?: string;
model?: string;
max_tokens?: number;
temperature?: number;
top_p?: number;
top_k?: number;
repetition_penalty?: number;
stop?: string[];
};
export interface Together {
chat?: true | TogetherChat;
images?: true | TogetherImages;
textToSpeech?: true | TogetherTextToSpeech;
}
//# sourceMappingURL=together.d.ts.map