strapi-supergpt
Version:
A plugin that gives you the ability to integrate ChatGPT into strapi
19 lines • 324 B
JavaScript
export const llms = [
{
llm: "groq",
baseUrl: "https://api.groq.com/openai/v1"
},
{
llm: "deepseek",
models: ["deepseek-chat", "deepseek-chat-16k"],
baseUrl: "https://api.deepseek.com"
},
{
llm: "mistral",
baseUrl: "https://api.mistral.ai"
},
{
llm: "lama",
baseUrl: "https://api.llama-api.com"
}
]