Get started with OmniDeploy in under 2 minutes.
1. Install the SDK
terminal
pip install omnideploy2. Get your API key
Go to Dashboard → API Keys and create a key.
3. Make your first request
python
from omnideploy import OmniDeploy
client = OmniDeploy(api_key="omni_live_...")
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello, world!"}],
)
print(response.choices[0].message.content)
print(f"Provider: {response.omnideploy.provider}")
print(f"Cost: ${response.omnideploy.cost_usd}")
print(f"Latency: {response.omnideploy.latency_ms}ms")