ILlmProvider Type
Abstract interface for LLM providers. Implementations wrap specific backends (Ollama, OpenAI, Anthropic, etc.)
Instance members
| Instance member |
Description
|
Full Usage:
this.CompleteAsync
Parameters:
Conversation
arg1 : CompletionOptions
Returns: Task<CompletionResult>
Modifiers: abstract |
Send a conversation to the LLM and return the completion result
|
Full Usage:
this.Name
Returns: string
Modifiers: abstract |
Human-readable name identifying this provider instance (e.g. "ollama", "openai")
|
Nao