150+ Premium AI Models

Powerful AI Models
For Every Task

Access the world's most advanced AI models. From text generation to image creation, find the perfect model for your needs.

LyDian Turbo

LyDian AI

Ultra-fast general purpose model optimized for speed and efficiency. Perfect for chat, content generation, and quick tasks.

0
Tokens/s
128K
Context
0
Accuracy
  • Fast response times (under 1 second)
  • Multi-language support (100+ languages)
  • Code generation and debugging

LyDian Pro

LyDian AI

Advanced reasoning model for complex tasks. Best for analysis, research, technical writing, and professional applications.

0
Tokens/s
200K
Context
0
Accuracy
  • Advanced reasoning and analysis
  • Long document processing (200K tokens)
  • Technical and scientific expertise

LyDian Vision

LyDian AI

Multimodal AI that understands both text and images. Analyze images, generate descriptions, and extract information from visuals.

0
Tokens/s
128K
Context
0
Accuracy
  • Image understanding and analysis
  • OCR and text extraction
  • Visual question answering

LyDian Engine Turbo

LyDian Labs

Industry-leading model from LyDian Labs. Exceptional at creative tasks, detailed instructions, and complex problem-solving.

0
Tokens/s
128K
Context
0
Accuracy
  • Creative writing and storytelling
  • Complex reasoning and planning
  • Function calling and tool use

LyDian Vision

LyDian AI

LyDian AI's most capable AI model. Excels at understanding context, nuanced conversations, and multimodal tasks.

0
Tokens/s
1M+
Context
0
Accuracy
  • Massive 1M+ token context window
  • Multimodal (text, image, video, audio)
  • Real-time processing capabilities

Ultra Intelligence Model

Advanced AI Platform

Advanced AI Platform's most intelligent model. Thoughtful, nuanced, and excels at detailed analysis, writing, and coding tasks.

0
Tokens/s
200K
Context
0
Accuracy
  • Constitutional AI for safety
  • Excellent at analysis and research
  • Long-form content generation

Real-World Use Cases

Content Generation

Create blog posts, social media content, product descriptions, and marketing copy. Generate quality content fast while maintaining your brand voice.

Code Assistance

Write code, debug, get optimization suggestions, and generate documentation. Support for all popular programming languages.

Image Analysis

Analyze images, recognize objects, extract text, and get detailed information about visual content.

Data Processing

Analyze large datasets, extract insights, generate reports, and get data visualization suggestions.

Translation

Professional translation in 100+ languages. Get natural, fluent translations that preserve context.

Model Comparison

Feature
LyDian Turbo
LyDian Pro
LyDian Vision
LyDian Engine Turbo
LyDian Vision
Enterprise AI 3.5
Text Generation
Code Generation
Image Understanding
-
-
Function Calling
JSON Mode
Streaming

Performance Benchmarks

Response Speed (tokens/sec)
LyDian Turbo
500+ tok/s
500
LyDian Pro
300+ tok/s
300
LyDian Vision
250+ tok/s
250
LyDian Engine Turbo
200+ tok/s
200
Enterprise AI 3.5
200+ tok/s
200
Context Window
LyDian Vision
1M+ tokens
1M+
LyDian Pro
200K tokens
200K
Enterprise AI 3.5
200K tokens
200K
LyDian Engine Turbo
128K tokens
128K
LyDian Turbo
128K tokens
128K
Accuracy Score
LyDian Pro
97%
97%
Enterprise AI 3.5
97%
97%
LyDian Engine Turbo
96%
96%
LyDian Vision
95%
95%
LyDian Vision
95%
95%
LyDian Turbo
94%
94%

API Usage Example

Quick Start with LyDian API
JavaScript
// Initialize LyDian API client
const LyDian = require('@lydian/sdk');

const client = new LyDian({
  apiKey: 'your-api-key'
});

// Use LyDian Pro for advanced reasoning
const response = await client.chat({
  model: 'lydian-pro',
  messages: [
    { role: 'user', content: 'Explain quantum computing' }
  ],
  temperature: 0.7,
  max_tokens: 1000
});

console.log(response.choices[0].message.content);

// Use LyDian Vision for image analysis
const visionResponse = await client.vision({
  model: 'lydian-vision',
  image: 'base64_encoded_image',
  prompt: 'What objects are in this image?'
});

console.log(visionResponse.description);