-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
51 lines (42 loc) · 1.15 KB
/
example.env
File metadata and controls
51 lines (42 loc) · 1.15 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
45
46
47
48
49
50
51
# Copy this file to .env (or export the vars manually) to configure local runs.
# SQLite
SQLITE_PATH=./data/arb.db
# Kafka
KAFKA_BROKERS=kafka-broker:9092
POLYMARKET_KAFKA_TOPIC=polymarket.snapshots
KALSHI_KAFKA_TOPIC=kalshi.snapshots
MATCHES_KAFKA_TOPIC=matches.live
# Chroma / embeddings
CHROMA_URL=http://chromadb:8000
CHROMA_COLLECTION=market_snapshots
NEBIUS_API_KEY=
NEBIUS_BASE_URL=https://api.tokenfactory.nebius.com/v1/
NEBIUS_EMBED_MODEL=
# Workers (prod and dev use the same values)
POLYMARKET_WORKERS=2
POLYMARKET_WORKER_GROUP=polymarket-workers
POLYMARKET_WORKER_VERBOSE=0
KALSHI_WORKERS=2
KALSHI_WORKER_GROUP=kalshi-workers
KALSHI_WORKER_VERBOSE=0
# Matching (used by workers)
MATCH_TOP_K=3
MATCH_SIMILARITY_THRESHOLD=0.95
MATCH_FRESH_WINDOW_SECONDS=600
MATCH_DEBUG=0
# Arb engine
ARB_ENGINE_WORKERS=1
ARB_ENGINE_GROUP=arb-engine
ARB_ENGINE_BUDGET_USD=100
# Redis cache
REDIS_ADDR=redis:6379
REDIS_PASSWORD=
REDIS_DB=0
REDIS_EMBED_TTL_HOURS=240
# Validator (used by snapshot-worker)
VALIDATOR_MODEL=openai/gpt-oss-120b
SNAPSHOT_WORKER_FORCE_VALIDATION=false
SNAPSHOT_WORKER_BYPASS_LLM=false
# Collector pagination
POLYMARKET_PAGE_SIZE=20
KALSHI_PAGE_SIZE=50