-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json
More file actions
56 lines (56 loc) · 1.68 KB
/
Copy pathmcp.json
File metadata and controls
56 lines (56 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
{
"version": "1.0.0",
"engine": {
"name": "Mohawk-Inference-Engine",
"max_concurrent_requests": 10,
"default_backend": "llama-cpp"
},
"models": [
{
"id": "llama-3.2-3b-instruct",
"name": "Llama 3.2 3B Instruct",
"path": "/models/llama-3.2-3b-instruct.Q4_K_M.gguf",
"context_length": 8192,
"embedding": false,
"system_prompt": "You are a helpful, harmless, and honest AI assistant developed by Mohawk.",
"hardware_config": {
"n_gpu_layers": 30,
"main_gpu": 0,
"tensor_split": [0.8, 0.2],
"offload_kqv": true,
"flash_attn": true
}
},
{
"id": "mistral-7b-v0.3",
"name": "Mistral 7B v0.3",
"path": "/models/mistral-7b-v0.3.Q5_K_M.gguf",
"context_length": 32768,
"embedding": true,
"system_prompt": "You are Mistral, an advanced AI capable of complex reasoning.",
"hardware_config": {
"n_gpu_layers": 24,
"main_gpu": 0,
"tensor_split": [1.0],
"offload_kqv": true,
"flash_attn": false
}
}
],
"system_prompts": {
"default": "You are a helpful AI assistant.",
"coder": "You are an expert software engineer. Provide clean, efficient, and well-commented code.",
"creative": "You are a creative writer. Focus on storytelling, imagery, and emotional depth.",
"analyst": "You are a data analyst. Focus on facts, logic, and structured outputs."
},
"metrics": {
"enabled": true,
"refresh_rate_ms": 500,
"expose_hardware": true,
"log_level": "info"
},
"security": {
"api_keys": ["mk_live_1234567890"],
"cors_origins": ["http://localhost:3000", "http://localhost:5173"]
}
}