-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.yaml
More file actions
53 lines (49 loc) · 962 Bytes
/
config.yaml
File metadata and controls
53 lines (49 loc) · 962 Bytes
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
# RagCode MCP Server Configuration
# Auto-generated on first run
llm:
provider: ollama
ollama_base_url: http://localhost:11434
ollama_model: phi3:medium
ollama_embed: mxbai-embed-large
temperature: 0.7
max_tokens: 1024
timeout: 60s
max_retries: 3
storage:
vector_db:
url: http://localhost:6333
api_key: ""
logging:
level: debug
format: text
output: file
path: mcp.log
# Multi-workspace configuration (auto-creates collections per workspace+language)
workspace:
enabled: true
auto_index: true
max_workspaces: 10
detection_markers:
- .git
- go.mod
- package.json
- Cargo.toml
- pyproject.toml
- setup.py
- requirements.txt
- composer.json
- pom.xml
- build.gradle
- Gemfile
- Package.swift
exclude_patterns:
- node_modules
- .git
- vendor
- target
- build
- dist
- .venv
collection_prefix: ragcode
index_include: []
index_exclude: []