-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.py
More file actions
47 lines (47 loc) · 1.25 KB
/
models.py
File metadata and controls
47 lines (47 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
Available Free Models for LocalAgent
Ollama models available for download and use
Note:Add other models if required then run the agent.py and it will list the model and you can download and free to go
"""
FREE_MODELS = [
{
"name": "qwen2.5-coder:7b",
"size": "4.7 GB",
"description": "Recommended - Best for code generation"
},
{
"name": "qwen2.5-coder:3b",
"size": "2.0 GB",
"description": "Fast - Good for simple tasks"
},
{
"name": "deepseek-coder-v2:16b",
"size": "9.0 GB",
"description": "High quality - Best for complex projects"
},
{
"name": "codellama:7b",
"size": "3.8 GB",
"description": "Meta's code model - Good alternative"
},
{
"name": "codegemma:7b",
"size": "5.0 GB",
"description": "Google's code model - Strong performance"
},
{
"name": "llama3.2:3b",
"size": "2.0 GB",
"description": "Fast and efficient general model"
},
{
"name": "phi3:mini",
"size": "2.3 GB",
"description": "Microsoft's compact model"
},
{
"name": "mistral:7b",
"size": "4.1 GB",
"description": "High quality general responses"
}
]