- Added Server Configuration settings page (backend + frontend) - Added .env config download/import API - Runtime config updates via UI - Support for all 3 themes (default, air, berry) - i18n support (zh/en)
11 lines
246 B
Go
11 lines
246 B
Go
package togetherai
|
|
|
|
// https://docs.together.ai/docs/inference-models
|
|
|
|
var ModelList = []string{
|
|
"meta-llama/Llama-3-70b-chat-hf",
|
|
"deepseek-ai/deepseek-coder-33b-instruct",
|
|
"mistralai/Mixtral-8x22B-Instruct-v0.1",
|
|
"Qwen/Qwen1.5-72B-Chat",
|
|
}
|