File size: 519 Bytes
a9dc537 |
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 |
# SPARKNET System Configuration
gpu:
primary: 0
fallback: [1, 2, 3]
max_memory_per_model: "8GB"
ollama:
host: "localhost"
port: 11434
default_model: "llama3.2:latest"
timeout: 300
memory:
vector_store: "chromadb"
embedding_model: "nomic-embed-text:latest"
max_context_length: 4096
persist_directory: "./data/memory"
workflow:
max_parallel_tasks: 5
task_timeout: 600
retry_attempts: 3
logging:
level: "INFO"
log_file: "./logs/sparknet.log"
rotation: "100 MB"
retention: "7 days"
|