Aurixel
Models/Google/gemini-3-pro-preview
Google

Gemini 3 Pro Preview

TextVision
Context
1.0M
Input
$2
/M tokens
Output
$12
/M tokens

Gemini 3 Pro Preview is Google's frontier reasoning model, delivering enhanced software engineering performance, improved agentic reliability, and more efficient token usage across complex workflows.

Quick start

python
from openai import OpenAI

client = OpenAI(
  api_key="$CK_KEY",
  base_url="https://conduit-api.aurixel.ai/v1",
)
resp = client.chat.completions.create(
  model="gemini-3-pro-preview",
  messages=[{"role": "user", "content": "Hi!"}],
)
print(resp.choices[0].message.content)

More from Google