UNPKG

openlit

Version:

OpenTelemetry-native Auto instrumentation library for monitoring LLM Applications, facilitating the integration of observability into your GenAI-driven projects

8 lines (7 loc) 209 B
export type LlmResponseFn = (args: { prompt: string; model?: string; apiKey?: string; baseUrl?: string; }) => Promise<string>; export declare const llmProviders: Record<string, LlmResponseFn>;