-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheulix.toml
More file actions
41 lines (33 loc) · 697 Bytes
/
eulix.toml
File metadata and controls
41 lines (33 loc) · 697 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
# Eulix Configuration
[project]
path = "."
[parser]
threads = 4
[embeddings]
model = "BAAI/bge-small-en-v1.5"
backend = "rocm"
#dimension = 384
[llm]
local = true
provider = "ollama"
model = "llama3.2:3b"
max_tokens = 15000
temperature = 0.2
baseURL = "http://localhost:11434"
# To use Anthropic Claude instead, change to:
# local = false
# provider = "anthropic"
# model = "claude-3-5-sonnet-20241022"
# api_key = "" # or set ANTHROPIC_API_KEY environment variable
[cache]
[cache.redis]
enabled = false
url = "redis://localhost:6379"
ttl_hours = 6
[cache.sql]
enabled = true
driver = "sqlite"
dsn = ".eulix/history.db"
[checksum]
change_threshold = 0.10
force_reanalyze_threshold = 0.30