Added readme & changed standard adress

This commit is contained in:
2026-07-24 18:52:19 +03:00
parent fc06456db2
commit 88ca4aecd2
2 changed files with 14 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
Как запускать и протестировать:
Запуск с дефолтными параметрами:
Bash
cargo run
Запуск с указанием конкретной сессии и своего URL (например, vLLM / llama.cpp / Ollama):
Bash
cargo run -- --session-id 12345 --api-url "http://localhost:8000/v1/chat/completions" --model "qwen2.5-coder"
Справка по доступным флагам:
Bash
cargo run -- --help
+1 -1
View File
@@ -15,7 +15,7 @@ struct Args {
#[arg(
short,
long,
default_value = "http://192.168.0.50:6969/v1/chat/completions"
default_value = "http://localhost"
)]
api_url: String,