mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-10 08:42:28 +08:00
7 lines
165 B
Bash
Executable File
7 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OPENAI_API_KEY="sk-rhjeVT1fkcuarBKnQR6ST$(cat ~/.config/openai)"
|
|
|
|
curl https://api.openai.com/v1/models \
|
|
-H "Authorization: Bearer ${OPENAI_API_KEY}"
|