chore: rename project and all references to qorona

This commit is contained in:
Luxferre
2026-08-27 14:08:50 +03:00
parent d68efdbf59
commit f60f7b0c49
6 changed files with 49 additions and 36 deletions
+4 -4
View File
@@ -12,7 +12,7 @@ echo "=== 2. Testing Non-Streaming Chat Completion ==="
curl -s -X POST "${BASE_URL}/v1/chat/completions" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-3.8-max",
"model": "qorona",
"messages": [
{"role": "user", "content": "What is the capital of Italy? Answer in 1 word."}
],
@@ -25,7 +25,7 @@ echo "=== 3. Testing Streaming SSE Completion (with reasoning) ==="
curl -N -s -X POST "${BASE_URL}/v1/chat/completions" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-3.8-max",
"model": "qorona",
"messages": [
{"role": "user", "content": "Calculate 25 * 25 and explain briefly in one sentence."}
],
@@ -39,7 +39,7 @@ echo "=== 4. Testing Function/Tool Calling ==="
curl -s -X POST "${BASE_URL}/v1/chat/completions" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-3.8-max",
"model": "qorona",
"messages": [
{"role": "user", "content": "What is the weather in Berlin?"}
],
@@ -64,4 +64,4 @@ curl -s -X POST "${BASE_URL}/v1/chat/completions" \
}' | jq .
echo ""
echo "=== All integration tests finished successfully! ==="
echo "=== All qorona integration tests finished successfully! ==="