> ## Documentation Index
> Fetch the complete documentation index at: https://docs.portkey.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Upstage AI

> Integrate Upstage with Prisma AIRS AI Gateway for chat, embeddings, streaming, and function calling.

## Quick Start

Get started with Upstage AI in under 2 minutes:

<CodeGroup>
  ```sh cURL icon="square-terminal" theme={"system"}
  # 1. Add @upstage provider in model catalog
  # 2. Use it:

  curl https://aigw.portkey.ai/v1/chat/completions \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $PORTKEY_API_KEY" \
    -d '{
      "model": "@upstage/solar-pro",
      "messages": [{"role": "user", "content": "Hello!"}]
    }'
  ```

  ```python OpenAI Py icon="python" theme={"system"}
  from openai import OpenAI

  # 1. Install: pip install openai
  # 2. Add @upstage provider in model catalog
  # 3. Use it:

  client = OpenAI(
      api_key="PORTKEY_API_KEY",  # AI Gateway API key
      base_url="https://aigw.portkey.ai/v1"
  )

  response = client.chat.completions.create(
      model="@upstage/solar-pro",
      messages=[{"role": "user", "content": "Hello!"}]
  )

  print(response.choices[0].message.content)
  ```

  ```js OpenAI JS icon="square-js" theme={"system"}
  import OpenAI from "openai"

  // 1. Install: npm install openai
  // 2. Add @upstage provider in model catalog
  // 3. Use it:

  const client = new OpenAI({
      apiKey: "PORTKEY_API_KEY",  // AI Gateway API key
      baseURL: "https://aigw.portkey.ai/v1"
  })

  const response = await client.chat.completions.create({
      model: "@upstage/solar-pro",
      messages: [{ role: "user", content: "Hello!" }]
  })

  console.log(response.choices[0].message.content)
  ```
</CodeGroup>

## Add Provider in Model Catalog

Before making requests, add Upstage to your Model Catalog:

1. Go to [**Model Catalog → Add Provider**](https://stratacloudmanager.paloaltonetworks.com/)
2. Select **Upstage**
3. Enter your [Upstage API key](https://console.upstage.ai/api-keys)
4. Name your provider (e.g., `upstage`)

<Card title="Complete Setup Guide" icon="book" href="/docs/aigw/product/model-catalog">
  See all setup options and detailed configuration instructions
</Card>

<Card title="Upstage Documentation" icon="book" href="https://console.upstage.ai/docs/getting-started/overview">
  Explore the official Upstage documentation
</Card>

***

## Upstage Capabilities

### Streaming

Stream responses for real-time output:

### Function Calling

Use Upstage's function calling capabilities:

### Embeddings

Generate embeddings for text:

***

## Next Steps

<CardGroup cols={2}>
  <Card title="Gateway Configs" icon="sliders" href="/docs/aigw/product/ai-gateway">
    Add fallbacks, load balancing, and more
  </Card>

  <Card title="Observability" icon="chart-line" href="/docs/aigw/product/observability">
    Monitor and trace your Upstage requests
  </Card>

  <Card title="Metadata" icon="tag" href="/docs/aigw/product/observability/metadata">
    Add custom metadata to requests
  </Card>
</CardGroup>


## Related topics

- [Overview](/docs/aigw/integrations/llms.md)
- [Supported Providers](/docs/aigw/api-reference/inference-api/supported-providers.md)
- [Agno AI](/docs/aigw/integrations/agents/agno-ai.md)
- [Workers AI](/docs/aigw/integrations/llms/workers-ai.md)
- [Lepton AI](/docs/aigw/integrations/llms/lepton.md)
