UNPKG

@sisu-ai/adapter-openai

Version:

OpenAI‑compatible Chat adapter with tools support.

9 lines (8 loc) 246 B
import type { LLM } from '@sisu-ai/core'; export interface OpenAIAdapterOptions { model: string; apiKey?: string; baseUrl?: string; responseModel?: string; } export declare function openAIAdapter(opts: OpenAIAdapterOptions): LLM;