52 lines
2.0 KiB
JavaScript
52 lines
2.0 KiB
JavaScript
import anthropic from './resources/anthropic.json' with { type: 'json' }
|
|
import cohere from './resources/cohere.json' with { type: 'json' }
|
|
import openai from './resources/openai.json' with { type: 'json' }
|
|
import openrouter from './resources/openrouter.json' with { type: 'json' }
|
|
import groq from './resources/groq.json' with { type: 'json' }
|
|
import huggingface from './resources/huggingface.json' with { type: 'json' }
|
|
import martian from './resources/martian.json' with { type: 'json' }
|
|
import mistral from './resources/mistral.json' with { type: 'json' }
|
|
import nvidia from './resources/nvidia.json' with { type: 'json' }
|
|
import deepseek from './resources/deepseek.json' with { type: 'json' }
|
|
import googleGemini from './resources/google_gemini.json' with { type: 'json' }
|
|
|
|
import anthropicModels from './models/anthropic.json' with { type: 'json' }
|
|
import cohereModels from './models/cohere.json' with { type: 'json' }
|
|
import openaiModels from './models/openai.json' with { type: 'json' }
|
|
import openrouterModels from './models/openrouter.json' with { type: 'json' }
|
|
import groqModels from './models/groq.json' with { type: 'json' }
|
|
import huggingfaceModels from './models/huggingface.json' with { type: 'json' }
|
|
import martianModels from './models/martian.json' with { type: 'json' }
|
|
import mistralModels from './models/mistral.json' with { type: 'json' }
|
|
import nvidiaModels from './models/nvidia.json' with { type: 'json' }
|
|
import deepseekModels from './models/deepseek.json' with { type: 'json' }
|
|
import googleGeminiModels from './models/google_gemini.json' with { type: 'json' }
|
|
|
|
const engines = [
|
|
anthropic,
|
|
openai,
|
|
cohere,
|
|
openrouter,
|
|
groq,
|
|
huggingface,
|
|
mistral,
|
|
martian,
|
|
nvidia,
|
|
deepseek,
|
|
googleGemini,
|
|
]
|
|
const models = [
|
|
...anthropicModels,
|
|
...openaiModels,
|
|
...cohereModels,
|
|
...openrouterModels,
|
|
...groqModels,
|
|
...huggingfaceModels,
|
|
...mistralModels,
|
|
...martianModels,
|
|
...nvidiaModels,
|
|
...deepseekModels,
|
|
...googleGeminiModels,
|
|
]
|
|
export { engines, models }
|