Supported Models
Choose the right AI model for your use case
Model Selection Guide
Fine-Tune Lab supports major AI providers with a unified API. Choose based on your needs:
Speed
Claude Haiku 4.5, GPT-5 Mini, GPT-4.1 Mini
Cost
GPT-4.1 Mini, GPT-5 Mini, Claude 3 Haiku
Intelligence
GPT-5 Pro, Claude Sonnet 4.5, GPT-5
OpenAI Models
GPT-5 family with vision support
GPT o3-Pro
OpenAI's most advanced reasoning model with unprecedented problem-solving capabilities.
o3-proStrengths
- Unprecedented reasoning depth
- Complex mathematical proofs
- Advanced scientific analysis
- Multi-step logical deduction
Best For
⚠️ Premium Pricing - Use With Caution
This model is 10x more expensive than standard models. Recommended primarily for LLM-as-a-Judge evaluations where superior reasoning is critical. Budget carefully.
GPT-5 Pro
Most advanced GPT-5 model with highest reasoning effort for complex multi-step tasks.
gpt-5-proStrengths
- Highest reasoning capability
- Advanced multi-step problem solving
- Complex code architecture
- Research-level analysis
Best For
GPT-5
Latest generation model with advanced reasoning and vision capabilities.
gpt-5-chatStrengths
- Advanced reasoning
- Multimodal (text + vision)
- Extended context window
- Tool use and function calling
Best For
GPT-5 Mini
Compact GPT-5 model optimized for speed and cost while maintaining strong capabilities.
gpt-5-miniStrengths
- Fast inference speed
- Cost-effective
- GPT-5 architecture benefits
- Large context window
Best For
GPT-4.1 Mini
Fast and cost-effective GPT-4.1 model for most tasks with vision support.
gpt-4.1-miniStrengths
- Fast response times
- Cost-effective
- Multimodal (text + vision)
- Good for most tasks
Best For
Anthropic Models
Claude 4.5 and Claude 3 families with extended context
Claude Sonnet 4.5
Next-generation Claude model with enhanced reasoning, vision, and extended context.
claude-sonnet-4.5Strengths
- Enhanced reasoning capabilities
- Extended 300K context
- Advanced vision support
- Superior code generation
Best For
Claude Haiku 4.5
Ultra-fast Claude 4.5 model optimized for speed and cost with vision support.
claude-haiku-4.5Strengths
- Fastest Claude model
- Extended context window
- Vision capabilities
- Cost-effective for scale
Best For
Claude 3.5 Sonnet
Anthropic's most intelligent Claude 3 model with strong coding and reasoning.
claude-3-5-sonnet-20241022Strengths
- Excellent coding abilities
- Strong analytical reasoning
- Nuanced responses
- Vision support
Best For
Claude 3 Opus
Most powerful Claude 3 model for highly complex tasks requiring deep reasoning.
claude-3-opus-20240229Strengths
- Highest intelligence (Claude 3)
- Complex reasoning
- Long-form content
- Vision capabilities
Best For
Claude 3 Haiku
Fast, compact Claude 3 model for quick responses and cost efficiency.
claude-3-haiku-20240307Strengths
- Very fast responses
- Most cost-effective (Claude 3)
- Good for simple tasks
- Large context support
Best For
Using Models in API
Example: Chat Completion
OpenAI Model
curl -X POST https://your-app.com/api/chat \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Explain quantum computing"
}
],
"model": "gpt-4o-mini",
"temperature": 0.7
}'Anthropic Model
curl -X POST https://your-app.com/api/chat \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Explain quantum computing"
}
],
"model": "claude-3-5-sonnet-20241022",
"temperature": 0.7
}'Unified API
All models use the same API format. Just change the model parameter to switch providers.