What should we get into?
Powered by GPT-OSS 120B.
Browse AI Models
GPT-OSS 120B
OpenAI's open-weight flagship model, for complex tasks.
Ooverta
Advanced reasoning and analysis.
GPT-OSS 20B
Extremely fast and lightweight.
Multi-Perspective
Uses multiple AI models simultaneously for comprehensive answers.
Qwen 2.5 72B (HF)
Alibaba's large open-weight instruct model, via Hugging Face.
Qwen 2.5 7B (HF)
Fast, lightweight open-weight instruct model.
Code Examples
API Integration
fetch('/api/query-gateway', {
method: 'POST',
body: JSON.stringify({
query: 'Explain AI',
model: 'ooverta'
})
})Streaming Response
const reader = response.body.getReader();
while (true) {
const { done, value } = await reader.read();
if (done) break;
// Process chunk
}