Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/src/components/chat/ModelSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ function getProviderLabel(provider: string, providerName?: string): string {
deepseek: 'DeepSeek',
fireworks: 'Fireworks',
openrouter: 'OpenRouter',
requesty: 'Requesty',
'nano-gpt': 'NanoGPT',
};
return labels[provider] || provider.charAt(0).toUpperCase() + provider.slice(1);
Expand Down
13 changes: 13 additions & 0 deletions app/src/components/models/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ const OPENROUTER_ICON = dataUri(
'</svg>'
);

const REQUESTY_ICON = dataUri(
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black">' +
'<path d="M4 4h9a5 5 0 0 1 2 9.58L19 20h-3l-3.5-6H8v6H4zm4 3v4h5a2 2 0 0 0 0-4z"/>' +
'</svg>'
);

const NANOGPT_ICON = dataUri(
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black">' +
'<path d="M5 4h3l8 11V4h3v16h-3L8 9v11H5z"/>' +
Expand Down Expand Up @@ -114,6 +120,13 @@ export const PROVIDER_META: ProviderMeta[] = [
iconUrl: OPENROUTER_ICON,
website: 'https://openrouter.ai/keys',
},
{
key: 'requesty',
name: 'Requesty',
brandColor: '#6366f1',
iconUrl: REQUESTY_ICON,
website: 'https://app.requesty.ai/api-keys',
},
{
key: 'groq',
name: 'Groq',
Expand Down
10 changes: 10 additions & 0 deletions orchestrator/app/services/model_adapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"openai": "OPENAI_API_KEY",
"anthropic": "ANTHROPIC_API_KEY",
"openrouter": "OPENROUTER_API_KEY",
"requesty": "REQUESTY_API_KEY",
"groq": "GROQ_API_KEY",
"together": "TOGETHER_API_KEY",
"deepseek": "DEEPSEEK_API_KEY",
Expand Down Expand Up @@ -100,6 +101,15 @@ def __init__(self, env_var: str, message: str) -> None:
"website": "https://openrouter.ai",
"requires_key": True,
},
"requesty": {
"name": "Requesty",
"description": "Access to 300+ AI models through a unified OpenAI-compatible API",
"base_url": "https://router.requesty.ai/v1",
"api_type": "openai",
"default_headers": {"HTTP-Referer": "https://tesslate.com", "X-Title": "OpenSail"},
"website": "https://requesty.ai",
"requires_key": True,
},
"nano-gpt": {
"name": "NanoGPT",
"description": "Pay-per-prompt access to 200+ AI models",
Expand Down