Switching from another provider?

Switching from another provider?

How It Works
Your app sends one request. We route it to OpenAI, Anthropic, Google, or any of 40+ providers—automatically picking the best path.
Integration
Already using OpenAI's SDK? Change one line—your base URL—and you're done. Works with any language or framework.
import openaiclient = openai.OpenAI(api_key="YOUR_LLM_GATEWAY_API_KEY",base_url="https://llm-gw.agenzo.com/v1")response = client.chat.completions.create(model="gpt-4o",messages=[{"role": "user", "content": "Hello, how are you?"}])print(response.choices[0].message.content)