Compare commits

..

No commits in common. "0f81cf6f177e3f0b332f308d47ccf6dd41b92125" and "a2ce024a18d7d6a9c1b552637a1793980be5dc0b" have entirely different histories.

3 changed files with 9 additions and 11 deletions

2
.gitignore vendored
View File

@ -5,8 +5,6 @@ dist/
.env* .env*
.dev.vars .dev.vars
*.local *.local
wrangler.toml
ecosystem.config.js
# Downloaded product assets (images, PDFs) # Downloaded product assets (images, PDFs)
assets/images/ assets/images/

View File

@ -14,8 +14,8 @@ module.exports = {
POSTGRES_PORT: "5433", POSTGRES_PORT: "5433",
POSTGRES_DB: "transceiver_db", POSTGRES_DB: "transceiver_db",
POSTGRES_USER: "tip", POSTGRES_USER: "tip",
POSTGRES_PASSWORD: "CHANGE_ME", POSTGRES_PASSWORD: "tip_prod_2026",
OLLAMA_URL: "http://YOUR_OLLAMA_HOST:11434", OLLAMA_URL: "http://192.168.178.213:11434",
QDRANT_URL: "http://localhost:6333", QDRANT_URL: "http://localhost:6333",
DOCLING_URL: "http://localhost:8100", DOCLING_URL: "http://localhost:8100",
}, },
@ -33,15 +33,15 @@ module.exports = {
env: { env: {
NODE_ENV: "production", NODE_ENV: "production",
MCP_HTTP_PORT: "3202", MCP_HTTP_PORT: "3202",
MCP_SECRET: "CHANGE_ME", MCP_SECRET: "tip-mcp-2026-prod",
POSTGRES_HOST: "localhost", POSTGRES_HOST: "localhost",
POSTGRES_PORT: "5433", POSTGRES_PORT: "5433",
POSTGRES_DB: "transceiver_db", POSTGRES_DB: "transceiver_db",
POSTGRES_USER: "tip", POSTGRES_USER: "tip",
POSTGRES_PASSWORD: "CHANGE_ME", POSTGRES_PASSWORD: "tip_prod_2026",
QDRANT_URL: "http://localhost:6333", QDRANT_URL: "http://localhost:6333",
OLLAMA_URL: "http://YOUR_OLLAMA_HOST:11434", OLLAMA_URL: "http://192.168.178.213:11434",
CORS_ORIGINS: "https://your-domain.example.com", CORS_ORIGINS: "https://eo-global-pulse.context-x.org,https://switchblade.context-x.org",
}, },
max_memory_restart: "300M", max_memory_restart: "300M",
instances: 1, instances: 1,
@ -60,7 +60,7 @@ module.exports = {
POSTGRES_PORT: "5433", POSTGRES_PORT: "5433",
POSTGRES_DB: "transceiver_db", POSTGRES_DB: "transceiver_db",
POSTGRES_USER: "tip", POSTGRES_USER: "tip",
POSTGRES_PASSWORD: "CHANGE_ME", POSTGRES_PASSWORD: "tip_prod_2026",
}, },
max_memory_restart: "1G", max_memory_restart: "1G",
instances: 1, instances: 1,

View File

@ -912,8 +912,8 @@ async function processLlmQueue(): Promise<void> {
} }
} }
llmRunning = false; llmRunning = false;
// Process next item — small delay between pipelines to avoid nginx rate-limit bursts // Process next item
if (llmQueue.length > 0) setTimeout(() => processLlmQueue(), 3000); if (llmQueue.length > 0) processLlmQueue();
} }
/** Run 10-Step Flexoptix Style LLM Pipeline and update draft in-place */ /** Run 10-Step Flexoptix Style LLM Pipeline and update draft in-place */