mirror of
https://github.com/ParisNeo/lollms_hub.git
synced 2026-05-04 03:01:01 -04:00
This commit introduces the foundational structure and routes for the administrative interface, including necessary API endpoints, core memory management services, database models, agent node logic, and the corresponding admin dashboard templates. Key changes include: - Updating API routes for administration, data stores, and playground features. - Implementing core memory management and asset handling. - Defining database models, sessions, and migrations. - Establishing the structure for agent components and administrative templates.
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"last_updated": "2026-03-22",
|
|
"models": [
|
|
{
|
|
"name": "deepseek-r1",
|
|
"family": "deepseek",
|
|
"context_length": 128000,
|
|
"capabilities": ["reasoning", "coding", "math"],
|
|
"supports_thinking": true,
|
|
"think_tag": "<think>",
|
|
"is_moe": true
|
|
},
|
|
{
|
|
"name": "deepseek-v3",
|
|
"family": "deepseek",
|
|
"context_length": 128000,
|
|
"capabilities": ["general", "coding", "multimodal"],
|
|
"supports_thinking": false,
|
|
"is_moe": true,
|
|
"energy_class": "B"
|
|
},
|
|
{
|
|
"name": "llama-3.3-70b",
|
|
"family": "llama",
|
|
"context_length": 128000,
|
|
"capabilities": ["general", "reasoning", "multilingual"],
|
|
"supports_thinking": false
|
|
},
|
|
{
|
|
"name": "llama-4-scout",
|
|
"family": "llama",
|
|
"context_length": 10000000,
|
|
"capabilities": ["ultra-long-context", "general"],
|
|
"supports_thinking": false,
|
|
"is_moe": true
|
|
},
|
|
{
|
|
"name": "gemma-3-27b",
|
|
"family": "gemma",
|
|
"context_length": 128000,
|
|
"capabilities": ["multimodal", "reasoning", "on-device"],
|
|
"supports_thinking": true,
|
|
"think_tag": "<thought>"
|
|
},
|
|
{
|
|
"name": "qwen-3-235b",
|
|
"family": "qwen",
|
|
"context_length": 342000,
|
|
"capabilities": ["general", "multilingual", "reasoning"],
|
|
"supports_thinking": true,
|
|
"think_tag": "<thought>"
|
|
},
|
|
{
|
|
"name": "phi-4",
|
|
"family": "phi",
|
|
"context_length": 32000,
|
|
"capabilities": ["reasoning", "small-scale"],
|
|
"supports_thinking": true
|
|
}
|
|
]
|
|
} |