mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-04 14:52:27 +08:00
14 lines
339 B
Bash
Executable File
14 lines
339 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
BASE="${OPENAI_API_BASE:-https://api.openai.com/v1}"
|
|
curl "${BASE}/completions" \
|
|
-w "Total time: %{time_total} seconds\n" \
|
|
-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
|
|
}'
|