mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-04 16:32:26 +08:00
16 lines
280 B
Bash
Executable File
16 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
URL="http://localhost:22035/va/chat"
|
|
|
|
curl -s "$URL" \
|
|
-H "Content-Type: application/json" \
|
|
-H "VA-TOKEN: ${ORCA_VA_TOKEN}" \
|
|
-d '{
|
|
"system":"翻译下列语言为中文:",
|
|
"user":"Hello, world!",
|
|
"debug":true
|
|
}' | tee tmp-chat.json
|
|
echo
|
|
|
|
jq . tmp-chat.json
|