Small mistake

This commit is contained in:
2026-07-24 18:41:41 +03:00
parent b54676ed8e
commit fc06456db2
+2 -2
View File
@@ -15,12 +15,12 @@ struct Args {
#[arg( #[arg(
short, short,
long, long,
default_value = "http://localhost:11434/v1/chat/completions" default_value = "http://192.168.0.50:6969/v1/chat/completions"
)] )]
api_url: String, api_url: String,
/// Название модели (для Ollama/vLLM) /// Название модели (для Ollama/vLLM)
#[arg(m_flag, short, long, default_value = "qwen2.5-coder")] #[arg(short, long, default_value = "qwen2.5-coder")]
model: String, model: String,
} }