UNPKG

@nomyx/assistant

Version:

A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)

10 lines (9 loc) 423 B
export interface ModelConfig { maxTokens: number; supportsTools: boolean; } export declare const OPENROUTER_MODEL_CONFIG: Record<string, ModelConfig>; export declare const DEFAULT_OPENROUTER_MODEL = "openai/gpt-3.5-turbo"; export declare function getModelConfig(model: string): ModelConfig; export declare function getMaxTokens(model: string): number; export declare function supportsTools(model: string): boolean;