-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
32 lines (27 loc) · 1.04 KB
/
Copy pathconfig.example.yaml
File metadata and controls
32 lines (27 loc) · 1.04 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
# Agent-Forge Configuration
# Version: 1.0
# Description: Example configuration for multi-turn agent orchestration
## @section Model Configuration
model:
# @property name - Model identifier
# @example "qwen3", "Ministral-3-3B-Reasoning-2512"
name: "mistralai/Ministral-3-3B-Reasoning-2512"
# @property endpoint - API endpoint URL
# @example "http://localhost:8000/v1", "https://api.example.com/v1"
endpoint: "http://localhost:8000/v1"
# @property context_limit - Token context limit
# Must be a positive integer representing token count
# @example 4096, 8192, 16384
context_limit: 16384
## @section System Configuration
system:
# @property prompt - System prompt for the agent
# Supports multi-line strings for complex instructions
prompt: |
You are a helpful Python coder assistant.
Be concise and provide code examples when helpful.
## @section RAG Configuration (optional)
# Remove this section entirely if you are not using the Go RAG service.
# rag:
# # gRPC address of the go-to-rag server
# endpoint: "localhost:50051"