mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-04 16:32:26 +08:00
8 lines
180 B
Bash
Executable File
8 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OPENAI_API_KEY="sk-rhjeVT1fkcuarBKnQR6ST$(cat ~/.config/openai)"
|
|
|
|
curl -s https://api.openai.com/v1/models \
|
|
-H "Authorization: Bearer ${OPENAI_API_KEY}" \
|
|
| jq . -
|