Initial clean commit - unified Lyra stack

This commit is contained in:
serversdwn
2025-11-16 03:17:32 -05:00
commit 94fb091e59
270 changed files with 74200 additions and 0 deletions

25
deprecated.env.txt Normal file
View File

@@ -0,0 +1,25 @@
# === GLOBAL LYRA SETTINGS ===
PROJECT_NAME=lyra
LOG_LEVEL=info
# === SHARED MEMORY / DATABASE CONFIG ===
NEOMEM_API=http://10.0.0.40:7077
NEOMEM_KEY=placeholder
# === PRIMARY LLM BACKEND (MI50 vLLM) ===
LLM_PRIMARY_URL=http://10.0.0.43:8000
LLM_PRIMARY_MODEL=qwen2.5:14b-instruct
# === SECONDARY (3090 Ollama) ===
LLM_SECONDARY_URL=http://10.0.0.3:11434
# === CLOUD BACKEND (OpenAI, optional) ===
LLM_CLOUD_URL=https://api.openai.com/v1
OPENAI_API_KEY=sk-...
# === LOCAL CPU FALLBACK ===
LLM_FALLBACK_URL=http://localhost:11434
# === DEFAULT TEMPERATURE / BACKEND SELECTION ===
LLM_TEMPERATURE=0.7
LLM_FORCE_BACKEND=primary # auto | primary | secondary | cloud | fallback