Skip to main content

🤖 Available Models

Orynt provides unified access to multiple AI models across providers, making it easy to switch between chat, image, speech, and embedding models with a single API/SDK.

🧠 AI Model Providers

ProviderDescriptionExample Models
OpenAIFull suite of AI models for chat, images, speech, and embeddingsgpt-4.1, gpt-4o-mini, gpt-3.5-turbo, whisper-1, dall-e-3, text-embedding-3-small, gpt-4o-mini-tts
GradientDecentralized AI provider integrating AI21 and open-source modelsqwen/qwen3-coder-480b-instruct-fp8, openai/gpt-oss-120b-free

⚙️ Model Capabilities

CapabilityDescriptionExample Models
Chat / Text GenerationGenerate text, answer questions, and perform reasoning tasksgpt-4.1, gpt-4o-mini, qwen/qwen3-coder-480b-instruct-fp8
Image GenerationCreate images from text promptsdall-e-3
EmbeddingsConvert text into vector representations for semantic search or analyticstext-embedding-3-small
Speech-to-Text (STT)Transcribe audio files into textwhisper-1
Text-to-Speech (TTS)Generate natural-sounding speech from text promptsgpt-4o-mini-tts

🧩 SDK Example: Chat Model

import { Orynt } from "@orynt/ai-x402";

const ai = new Orynt({
  baseUrl: "https://api.oryntai.xyz/api/v1",
  network: "solana",
});

const response = await ai.chat({
  model: "gpt-4.1",
  messages: [{ role: "user", content: "Hello, Orynt!" }],
});

console.log(response);

🧩 REST API Example: Chat Model

curl -X POST "https://api.oryntai.xyz/api/v1/ai/images" \
-H "Content-Type: application/json" \
-H "X-Network: solana" \
-H "X-PAYMENT: <your_payment_signature>" \
-d '{
  "model": "dall-e-3",
  "prompt": "A futuristic city skyline at sunset",
  "n": 1,
  "width": 1024,
  "height": 1024
}'

🧩 Start Integrating