Skip to main content

Overview

Upstage Console provides $10 in trial credits valid for 3 months, giving you access to their Solar Pro and Solar Mini language models.

Trial Credits

$10 in free credits

Duration

Valid for 3 months

Available Models

Upstage offers the Solar family of models, designed for efficient and high-quality language understanding and generation.

Solar Models

ModelDescription
Solar ProHigh-performance model for complex tasks
Solar MiniEfficient model optimized for speed and cost
Solar models are optimized for multilingual capabilities and excel at following instructions accurately.

Getting Started

1. Sign Up

Visit console.upstage.ai and create a free account to receive your $10 in trial credits.

2. Get Your API Key

After registration, navigate to your dashboard to generate an API key.

3. Make API Calls

import openai

client = openai.OpenAI(
    api_key="YOUR_UPSTAGE_API_KEY",
    base_url="https://api.upstage.ai/v1/solar"
)

response = client.chat.completions.create(
    model="solar-pro",
    messages=[{
        "role": "user",
        "content": "What is the capital of France?"
    }]
)

print(response.choices[0].message.content)
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: process.env.UPSTAGE_API_KEY,
  baseURL: 'https://api.upstage.ai/v1/solar'
});

const response = await client.chat.completions.create({
  model: 'solar-pro',
  messages: [{
    role: 'user',
    content: 'What is the capital of France?'
  }]
});

console.log(response.choices[0].message.content);
curl https://api.upstage.ai/v1/solar/chat/completions \
  -H "Authorization: Bearer YOUR_UPSTAGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "solar-pro",
    "messages": [{
      "role": "user",
      "content": "What is the capital of France?"
    }]
  }'

Model Comparison

Solar Pro

Best for:
  • Complex reasoning tasks
  • High-quality outputs
  • Production applications

Solar Mini

Best for:
  • Fast inference
  • Cost-effective processing
  • High-volume requests

Key Features

  • Multilingual Support: Strong performance across multiple languages
  • Instruction Following: Precise adherence to user instructions
  • OpenAI Compatible: Easy integration with existing OpenAI SDK code

Use Cases

  • Chatbots: Build conversational AI with accurate responses
  • Content Generation: Create high-quality text content
  • Translation: Leverage multilingual capabilities
  • Code Generation: Generate and explain code
  • Data Extraction: Extract structured information from text

Resources

Upstage Console

Access the platform

Documentation

View API documentation
Your $10 credit expires after 3 months. Monitor your usage to maximize value during the trial period.

Build docs developers (and LLMs) love