SAGEA Logo
SAGEABeta

Quickstart

Quickstart

Get started with SAGEA's voice synthesis, language models, and vision capabilities in under 5 minutes.

1. Get Your API Key

Sign up and get your API key from the SAGEA Console:

  1. Create a free account
  2. Navigate to API Keys in your dashboard
  3. Generate a new API key
  4. Copy your key (keep it secure!)

2. Install the SDK

Install the SAGEA SDK for your preferred language:

Python
pip install sagea
Node.js
npm install @sagea/sdk

3. Make Your First Request

Voice Synthesis with VORA

Generate your first AI voice:

import sagea
 
# Initialize client
client = sagea.VoraClient(api_key="your-api-key")
 
# Generate speech
audio = client.synthesize(
    text="Hello! Welcome to SAGEA.",
    voice="sarah",
    model="vora-v1"
)
 
# Save the audio
audio.save("welcome.wav")

Language Model Chat

Have a conversation with SAGEA's language models:

import sagea
 
# Initialize client  
client = sagea.ChatClient(api_key="your-api-key")
 
# Send a message
response = client.chat(
    messages=[
        {"role": "user", "content": "Explain quantum computing in simple terms"}
    ],
    model="sagea-chat"
)
 
print(response.content)

Vision Analysis

Analyze images with SAGEA's vision models:

import sagea
 
# Initialize client
client = sagea.VisionClient(api_key="your-api-key")
 
# Analyze an image
response = client.analyze(
    image_url="https://example.com/image.jpg",
    prompt="What's in this image?"
)
 
print(response.description)

4. Next Steps

Now that you've made your first requests, explore more capabilities:

πŸŽ™οΈ Voice Synthesis

Learn about VORA's advanced features

Explore VORA β†’

πŸ“– Guides

Step-by-step tutorials and best practices

Browse guides β†’

Need Help?

On this page