-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml.example
More file actions
44 lines (36 loc) · 1.4 KB
/
config.toml.example
File metadata and controls
44 lines (36 loc) · 1.4 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
# Rich Issue MCP Configuration File
# Copy this file to config.toml and fill in your values
[api]
# Mistral API key for embeddings and AI processing
mistral_api_key = "your-mistral-api-key-here"
[github]
# GitHub configuration (optional - defaults to gh CLI)
# token = "your-github-token-here"
[mcp]
# MCP server configuration
host = "localhost"
port = 8000
[processing]
# Processing configuration
batch_size = 100
max_issues = 1000
[cache]
# Cache configuration
# directory = "./dcache" # Cache directory (defaults to project_root/dcache)
# size_limit_mb = 500 # Cache size limit in MB (default: 500MB)
[data]
# Data directory configuration (REQUIRED)
# Must be an absolute path
directory = "/path/to/your/data" # Absolute path to data directory
[qdrant]
# Qdrant vector database configuration
host = "localhost" # Qdrant server host
port = 6333 # Qdrant server port
api_key = "" # Qdrant API key (optional, leave empty for no auth)
timeout = 30 # Request timeout in seconds (optional, default: 30)
[board]
# GitHub Project Board export configuration
# Use EITHER org_or_user OR repository (not both)
org_or_user = "your-org-or-username" # GitHub organization or username
# repository = "owner/repo" # For repository-level projects
project_number = 1 # Project number (from the project URL)