API referenceInterfaces
LLMProvider
Defined in: llm/types.ts:107
A complete LLM plugin registration. Keeping configuration discovery and client construction beside the capability declaration lets callers ask what a provider can do without checking a provider name.
Properties
id
id: string;Defined in: llm/types.ts:108
capabilities
capabilities: LLMProviderCapabilities;Defined in: llm/types.ts:109
Methods
isConfigured()
isConfigured(): boolean;Defined in: llm/types.ts:110
Returns
boolean
createClient()
createClient(): LLMClient;Defined in: llm/types.ts:111
Returns
createBatchClient()?
optional createBatchClient(): BatchLLMClient;Defined in: llm/types.ts:112