-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx
More file actions
20 lines (16 loc) · 633 Bytes
/
x
File metadata and controls
20 lines (16 loc) · 633 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
curl -s http://127.0.0.1:8317/v1/chat/completions \
-H "Authorization: Bearer sk-ryfvDnXrMUFrAzPjmtot02Kf8SAcWXGjYebJHbpVyqS9A" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.3-codex",
"messages": [{"role": "user", "content": "hi"}],
"max_tokens": 50
}'
curl -s https://ai.22gnusdev.xyz/v1/chat/completions \
-H "Authorization: Bearer sk-ryfvDnXrMUFrAzPjmtot02Kf8SAcWXGjYebJHbpVyqS9A" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.3-codex",
"messages": [{"role": "user", "content": "hi"}],
"max_tokens": 50
}'