Files
orca/misc/test/completion.sh
Zheng Kai 5393e78e3e test
2023-06-13 17:44:37 +08:00

13 lines
312 B
Bash
Executable File

#!/bin/bash -ex
BASE="${OPENAI_API_BASE:-https://api.openai.com/v1}"
curl "${BASE}/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${OPENAI_API_KEY}" \
-d '{
"model": "text-davinci-003",
"prompt": "Say this is a test",
"max_tokens": 7,
"temperature": 0
}'