/** * QA360 Ollama Command * * Manage Ollama integration for AI-powered test generation. * This command handles connection testing, model management, and configuration. */ import { Command } from 'commander'; /** * Test Ollama connection */ export declare function ollamaTestCommand(options?: { model?: string; }): Promise; /** * List available models */ export declare function ollamaListCommand(): Promise; /** * Pull a model */ export declare function ollamaPullCommand(model: string): Promise; /** * Generate tests using Ollama */ export declare function ollamaGenerateCommand(prompt: string, options?: { model?: string; type?: string; json?: boolean; }): Promise; /** * Show Ollama configuration */ export declare function ollamaConfigCommand(options?: { setUrl?: string; setModel?: string; }): Promise; /** * Create Ollama commands */ export declare function createOllamaCommands(): Command;