@nxuss/lemma 0.4.1 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lemma-proxy.cjs +3 -3
- package/package.json +2 -3
package/lemma-proxy.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
'use strict';
|
|
3
3
|
/**
|
|
4
|
-
* Lemma Proxy v0.4.
|
|
4
|
+
* Lemma Proxy v0.4.2 — Universal AI Cache CLI
|
|
5
5
|
* Commands: start, stop, stats, status, activate <key>
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -467,14 +467,14 @@ class LemmaServer {
|
|
|
467
467
|
server.listen(this.port, () => {
|
|
468
468
|
fs.writeFileSync(PID_FILE, String(process.pid));
|
|
469
469
|
fs.writeFileSync(PORT_FILE, String(this.port));
|
|
470
|
-
console.log(`\n🚀 Lemma Proxy v0.4.
|
|
470
|
+
console.log(`\n🚀 Lemma Proxy v0.4.2\n📁 Project : ${this.projectName}\n🔌 Port : ${this.port}\n`);
|
|
471
471
|
});
|
|
472
472
|
process.on('SIGTERM', () => server.close());
|
|
473
473
|
}
|
|
474
474
|
}
|
|
475
475
|
|
|
476
476
|
// ── CLI ────────────────────────────────────────────────────────────────────────
|
|
477
|
-
program.name('lemma').description('Lemma Proxy CLI — Intelligent AI Gateway').version('0.4.
|
|
477
|
+
program.name('lemma').description('Lemma Proxy CLI — Intelligent AI Gateway').version('0.4.2');
|
|
478
478
|
|
|
479
479
|
program.command('start')
|
|
480
480
|
.description('Start the proxy server')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nxuss/lemma",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Intelligent AI Gateway — Semantic cache, Privacy Firewall, and Autonomous Cost-Optimization for AI Agents.",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -160,8 +160,7 @@
|
|
|
160
160
|
},
|
|
161
161
|
"homepage": "https://github.com/Nxusbets/lemma#readme",
|
|
162
162
|
"dependencies": {
|
|
163
|
-
"@chroma-core/default-embed": "^
|
|
164
|
-
"@nxuss/lemma": "^0.3.1",
|
|
163
|
+
"@chroma-core/default-embed": "^0.1.9",
|
|
165
164
|
"@types/cors": "^2.8.19",
|
|
166
165
|
"axios": "^1.6.0",
|
|
167
166
|
"commander": "^14.0.3",
|