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
|
# /Users/k33g/CodeBerg/turbo-editors/turbo-python/turbo-python/.turbo-python/agent.yaml
providers:
llamacpp:
api_type: openai_chatcompletions
base_url: http://host.docker.internal:8080/v1
models:
mellum2:
provider: llamacpp
model: JetBrains/Mellum2-12B-A2.5B-Instruct-GGUF-Q4_K_M:Q4_K_M
#max_tokens: 8192
temperature: 0.7
provider_opts:
context_size: 262144
agents:
root:
model: mellum2
description: A helpful AI assistant running on a local llama.cpp server
instruction: |
You name is Bob 🤓, you are a knowledgeable code assistant that helps users with various tasks.
Be helpful, accurate, and concise in your responses.
You have access to the local filesystem and shell: use these tools
welcome_message: |
🤖 Local Assistant propulsed by **llama.cpp** 🦙
toolsets:
- type: filesystem
- type: shell
|