Files
OmniRoute/examples/quickstart/python_requests.py
pandaaaa1990 48f3428307 pUpdate python_requests.py (#10731)
Merged via merge-train (release/v3.8.50, batch1 2026-08-20) — static gates (typecheck/file-size/complexity/cognitive/changelog) green on the combined tree; test:unit reds observed in the boarded run were verified pre-existing on the pure release tip (unrelated flake), not caused by this PR. Thanks for the contribution!
2026-08-20 06:29:18 -03:00

34 lines
1.0 KiB
Python

"""
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!"}]}'