forked from diegosouzapw/OmniRoute
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython_requests.py
More file actions
33 lines (27 loc) · 1.03 KB
/
Copy pathpython_requests.py
File metadata and controls
33 lines (27 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""
OmniRoute Quickstart — Python (requests library)
================================================
Run: pip install requests (if not already installed)
python python_requests.py
"""
import requests
# Your local OmniRoute server — started with: npx omniroute
API_URL = "http://localhost:20128/v1/chat/completions"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer dummy-key", # Any string works for free/keyless providers
}
data = {
"model": "felo/auto", # Keyless, works out of the box — no sign-up needed
"stream": False,
"messages": [
{"role": "user", "content": "Hello! What can you do?"}
],
}
response = requests.post(API_URL, headers=headers, json=data)
response.raise_for_status()
print(response.json()["choices"][0]["message"]["content"])
# Fresh install, zero credentials — `auto` already works:
# curl http://localhost:20128/v1/chat/completions \
# -H "Content-Type: application/json" \
# -d '{"model":"auto","messages":[{"role":"user","content":"Hello!"}]}'