diff --git a/ecosystem.config.js b/ecosystem.config.js index e9f7154..55d6844 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -15,7 +15,7 @@ module.exports = { POSTGRES_DB: "transceiver_db", POSTGRES_USER: "tip", POSTGRES_PASSWORD: "tip_prod_2026", - OLLAMA_URL: "http://localhost:11434", + OLLAMA_URL: "http://192.168.178.213:11434", QDRANT_URL: "http://localhost:6333", DOCLING_URL: "http://localhost:8100", }, @@ -40,7 +40,7 @@ module.exports = { POSTGRES_USER: "tip", POSTGRES_PASSWORD: "tip_prod_2026", QDRANT_URL: "http://localhost:6333", - OLLAMA_URL: "http://localhost:11434", + OLLAMA_URL: "http://192.168.178.213:11434", CORS_ORIGINS: "https://eo-global-pulse.context-x.org,https://switchblade.context-x.org", }, max_memory_restart: "300M", diff --git a/packages/api/src/index.ts b/packages/api/src/index.ts index a996908..b334faf 100644 --- a/packages/api/src/index.ts +++ b/packages/api/src/index.ts @@ -67,7 +67,7 @@ app.get("/", (_req, res) => { app.get("/api", (_req, res) => { res.json({ name: "Transceiver Intelligence Platform", - version: "0.2.1", + version: "0.2.2", endpoints: [ "GET /api/transceivers?q=&form_factor=&speed=&category=&fiber_type=&wdm_type=&coherent=", "GET /api/transceivers/:id", diff --git a/packages/api/src/routes/health.ts b/packages/api/src/routes/health.ts index fe55f24..a679375 100644 --- a/packages/api/src/routes/health.ts +++ b/packages/api/src/routes/health.ts @@ -14,7 +14,7 @@ healthRouter.get("/", async (_req: Request, res: Response) => { res.json({ success: true, status: "healthy", - version: "0.2.1", + version: "0.2.2", uptime: process.uptime(), database: { connected: true,