2024-10-12 16:53:42 +05:30
|
|
|
export const OAI_API_PROVIDERS = [
|
|
|
|
|
{
|
|
|
|
|
label: "LM Studio",
|
|
|
|
|
value: "lmstudio",
|
|
|
|
|
baseUrl: "http://localhost:1234/v1"
|
|
|
|
|
},
|
2024-11-10 14:02:44 +05:30
|
|
|
{
|
|
|
|
|
label: "LlamaFile",
|
|
|
|
|
value: "llamafile",
|
|
|
|
|
baseUrl: "http://127.0.0.1:8080/v1"
|
|
|
|
|
},
|
2024-10-12 16:53:42 +05:30
|
|
|
{
|
|
|
|
|
label: "OpenAI",
|
|
|
|
|
value: "openai",
|
|
|
|
|
baseUrl: "https://api.openai.com/v1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "Fireworks",
|
|
|
|
|
value: "fireworks",
|
|
|
|
|
baseUrl: "https://api.fireworks.ai/inference/v1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "Groq",
|
|
|
|
|
value: "groq",
|
|
|
|
|
baseUrl: "https://api.groq.com/openai/v1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "Together",
|
|
|
|
|
value: "together",
|
|
|
|
|
baseUrl: "https://api.together.xyz/v1"
|
|
|
|
|
},
|
2024-10-12 18:28:29 +05:30
|
|
|
{
|
|
|
|
|
label: "OpenRouter",
|
|
|
|
|
value: "openrouter",
|
|
|
|
|
baseUrl: "https://openrouter.ai/api/v1"
|
|
|
|
|
},
|
2024-10-12 16:53:42 +05:30
|
|
|
{
|
2024-10-13 19:52:16 +05:30
|
|
|
label: "Custom",
|
2024-10-12 16:53:42 +05:30
|
|
|
value: "custom",
|
|
|
|
|
baseUrl: ""
|
|
|
|
|
}
|
|
|
|
|
]
|