ORYASTRA
Products
Solutions
Developers
Research
Pricing
Resources
About
EN
Login
ORYASTRA

With fire at the core, toward the realm of starsLet intelligence reach the real world

About

  • Company profile
  • Join us
  • Current focus
  • Stage progress
  • Strategic partners
  • Contact us
  • Security & Privacy
  • Trustworthy AI

Products

  • NOREK Chat
  • NOREK Agent
  • ORAST
  • Product Overview

Solutions

  • Individuals
  • Teams
  • Enterprise
  • Healthcare
  • Robotics & Embodied AI
  • Education
  • Research Innovation
  • Intelligent Work

Developers

  • SDK
  • API
  • Docs

Research

  • Research Overview
  • Agent Research
  • Multimodal Intelligence
  • Model Research

Pricing

  • NOREK Subscription

Contact and follow us

oryastra
Emailoryastra@starwardai.cn
Phone18512185217
Official social media
Official social media
Business cooperation
Business cooperation
© 2026 Towarsstar (Shanghai) AI Technology Co., Ltd.All rights reserved.沪ICP备2026020218号-1Privacy PolicyTerms of Service

SDK

Integrate ORYASTRA AI quickly with official SDKs.

SDK menu

Get started/Overview

Python SDK

Use the official SDK to call ORYASTRA AI with typed, maintainable code.

This guide explains overview with the Python SDK. Keep configuration server-side and separate from business logic.

  • Unified authentication, requests, and error handling.
  • Support for responses, chat, files, agents, and multimodal capabilities.
  • Synchronous, asynchronous, and streaming patterns.

Note

Set the API key through an environment variable instead of writing it directly in application code.

First request

Python
from oryastra import OryastraAI

client = OryastraAI()
response = client.responses.create(
    model="oryastra-chat",
    input="Hello",
)
print(response.output_text)

Output

Hello! How can I help?