| 45 | import { NativeOllamaHandler } from "./providers/native-ollama" |
| 46 | |
| 47 | export interface SingleCompletionHandler { |
| 48 | completePrompt(prompt: string, systemPrompt?: string, metadata?: any): Promise<string> |
| 49 | } |
| 50 | |
| 51 | export interface ApiHandlerCreateMessageMetadata { |
| 52 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected