infomaniak-ai-provider
Version:
> the project is under active development, for now only text and embedding models are supported.
19 lines (17 loc) • 470 B
text/typescript
interface InfomaniakModel {
name: string;
type: string;
id: string;
version: string;
maxTokenInput: number | null;
lastUpdatedAt: string;
status: string;
}
declare function useInfomaniakModels(): {
chatModels: InfomaniakModel[];
embeddingModels: InfomaniakModel[];
imageModels: InfomaniakModel[];
transcriptionModels: InfomaniakModel[];
models: InfomaniakModel[];
};
export { type InfomaniakModel, useInfomaniakModels };