-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (20 loc) · 863 Bytes
/
Copy pathenv.example
File metadata and controls
28 lines (20 loc) · 863 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
# MAXXKI CodeIndex — Konfiguration
# Kopiere diese Datei nach .env und passe die Pfade an.
# Das start_codeindex.sh liest diese Variablen automatisch ein.
# Pfad zum llama-server Binary
LLAMA_BIN=/path/to/llama.cpp/build/bin/llama-server
# Verzeichnis mit den GGUF-Modelldateien
MODELS_DIR=/path/to/llama.cpp/models
# Router-Modell (klein, schnell — für Datei-/Node-Auswahl)
MODEL_ROUTER=qwen2.5-coder-1.5b-instruct-q4_k_m.gguf
# Answer-Modell (größer — für die finale Antwort)
MODEL_ANSWER=qwen2.5-coder-3b-instruct-iq4_xs.gguf
# Zu indexierendes Projektverzeichnis (Standard: aktuelles Verzeichnis)
PROJECT_DIR=.
# Server-Ports (nur ändern bei Konflikten)
PORT_ROUTER=8080
PORT_ANSWER=8081
# Anzahl CPU-Threads pro Server (Empfehlung: CPU-Kerne minus 1)
THREADS=3
# Parallele Slots für den Router-Server (für asyncio.gather)
SLOTS_ROUTER=4