How do I call gpt-3.5-turbo from my code?
Use the OpenAI or Anthropic SDK and point baseURL at https://synapse.garden/api/v1. Set model: ‘openai/gpt-3.5-turbo’ and supply your Synapse Garden API key. No code changes beyond the base URL.
openai/gpt-3.5-turbo idOpenAI's most capable and cost effective model in the GPT-3.5 family optimized for chat purposes, but also works well for traditional completions tasks.
# Drop-in OpenAI-compatible client$ import { generateText } from 'ai'$$ const { text } = await generateText({$ model: 'openai/gpt-3.5-turbo',$ baseURL: 'https://synapse.garden/api/v1',$ apiKey: process.env.MG_KEY,$ prompt: 'Why is the sky blue?',$ })
| Rate | Per million tokens · USD |
|---|---|
| Input | $0.550/M |
| Output | $1.65/M |
Use the OpenAI or Anthropic SDK and point baseURL at https://synapse.garden/api/v1. Set model: ‘openai/gpt-3.5-turbo’ and supply your Synapse Garden API key. No code changes beyond the base URL.
Input: $0.550/M per million tokens. Output: $1.65/M per million tokens. The free tier includes a million tokens every month at no cost.
gpt-3.5-turbo supports a context window of 16.4K tokens, with a maximum output of 4.1K tokens.
No. Synapse Garden is the single API surface — one key gives you OpenAI, Anthropic, Google, Meta, Mistral, DeepSeek, xAI, Cohere, and more. Billing, rate limits, and audit logs are unified.
Sign up, create a key, drop our base URL into your existing client. The free tier includes a million tokens every month — no credit card.