Files
orca/misc/test/chat.sh
Zheng Kai 71ec1811e1 limit
2023-08-07 10:42:37 +08:00

12 lines
305 B
Bash
Executable File

#!/bin/bash -ex
BASE="${OPENAI_API_BASE:-https://api.openai.com/v1}"
curl -v "${BASE}/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${OPENAI_API_KEY} no-cache" \
-d '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Hello!"}]
}'