mirror of
https://github.com/ruvnet/RuView
synced 2026-08-09 20:21:43 +00:00
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/.
This commit is contained in:
Vendored
+34
@@ -0,0 +1,34 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user