/** * Mistral AI LLM provider for Iranti. * * Implements the LLMProvider interface using Mistral's OpenAI-compatible REST * API at api.mistral.ai. Provides access to Mistral's efficient small models * well-suited to the classification and filtering tasks Iranti routes to them. * * Configuration env vars: * MISTRAL_API_KEY — required * MISTRAL_MODEL — default model (default: mistral-small-latest) */ import { LLMProvider, LLMMessage, LLMResponse, CompleteOptions } from '../llm'; declare class MistralProvider implements LLMProvider { private apiKey; private model; constructor(); complete(messages: LLMMessage[], options?: CompleteOptions): Promise; } declare const _default: MistralProvider; export default _default; //# sourceMappingURL=mistral.d.ts.map