deep-chat
Version:
Customizable chat component for AI APIs
20 lines • 695 B
TypeScript
import { HuggingFace } from './huggingFace';
import { StabilityAI } from './stabilityAI';
import { AssemblyAI } from './assemblyAI';
import { Mistral } from './mistral';
import { APIKey } from './APIKey';
import { Cohere } from './cohere';
import { Gemini } from './gemini';
import { OpenAI } from './openAI';
import { Azure } from './azure';
export interface DirectConnection {
openAI?: OpenAI & APIKey;
huggingFace?: HuggingFace & APIKey;
mistral?: Mistral & APIKey;
stabilityAI?: StabilityAI & APIKey;
cohere?: Cohere & APIKey;
gemini?: Gemini & APIKey;
azure?: Azure & APIKey;
assemblyAI?: AssemblyAI & APIKey;
}
//# sourceMappingURL=directConnection.d.ts.map