Utility class providing adapter functions for interacting with various AI completion providers.
constructor();
fromCohereClientV2: (cohere: any, model?: string) => TCompleteFn
Creates a function to interact with CohereClientV2 chat completions API.
fromOpenAI: (openai: any, model?: string, response_format?: { type: string; }) => TCompleteFn
Creates a function to interact with OpenAI's chat completions API.
fromLMStudio: (openai: any, model?: string, response_format?: { type: string; }) => TCompleteFn
Creates a function to interact with LMStudio's chat completions API.
fromOllama: (ollama: any, model?: string, tool_call_protocol?: string) => TCompleteFn
Creates a function to interact with Ollama's chat completions API.