Files
ruvnet--RuView/vendor/midstream/AIMDS/.env.example
T
rUv 407b46b206 feat: vendor midstream and sublinear-time-solver libraries (#109)
Add ruvnet/midstream (AIMDS real-time inference) and
ruvnet/sublinear-time-solver (sublinear optimization algorithms)
as vendored dependencies under vendor/.
2026-03-02 23:34:05 -05:00

35 lines
690 B
Bash

# AIMDS Gateway Configuration
# Gateway
GATEWAY_PORT=3000
GATEWAY_HOST=0.0.0.0
ENABLE_COMPRESSION=true
ENABLE_CORS=true
RATE_LIMIT_WINDOW_MS=60000
RATE_LIMIT_MAX=1000
REQUEST_TIMEOUT=30000
SHUTDOWN_TIMEOUT=10000
# AgentDB
AGENTDB_PATH=./data/agentdb
AGENTDB_EMBEDDING_DIM=384
AGENTDB_HNSW_M=16
AGENTDB_HNSW_EF_CONSTRUCTION=200
AGENTDB_HNSW_EF_SEARCH=100
AGENTDB_QUIC_ENABLED=false
AGENTDB_QUIC_PEERS=
AGENTDB_QUIC_PORT=4433
AGENTDB_MEMORY_MAX_ENTRIES=100000
AGENTDB_MEMORY_TTL=86400000
# lean-agentic
LEAN_ENABLE_HASH_CONS=true
LEAN_ENABLE_DEPENDENT_TYPES=true
LEAN_ENABLE_THEOREM_PROVING=true
LEAN_CACHE_SIZE=10000
LEAN_PROOF_TIMEOUT=5000
# Logging
LOG_LEVEL=info
NODE_ENV=development