Documentation
Everything you need to integrate Model Orbit into your applications.
Quick Start
Get up and running with Model Orbit in under 5 minutes.
Install SDK
npm install @modelorbit/sdk
JavaScript
import { ModelOrbit } from '@modelorbit/sdk'; const orbit = new ModelOrbit({ apiKey: 'your-api-key' }); const response = await orbit.chat({ model: 'gpt-4', messages: [{ role: 'user', content: 'Hello!' }] });
Installation
JavaScript / TypeScript
npm install @modelorbit/sdk
Python
pip install modelorbit
Authentication
All API requests require authentication using an API key.
HTTP Header
Authorization: Bearer YOUR_API_KEY
Supported Models
GPT-4
OpenAI
Claude 3
Anthropic
GeminiGoogle
Llama 3
Meta
Mistral
Mistral AI
Custom
Your Models