TheAiCollectiveART commited on
Commit
9c2bea7
·
verified ·
1 Parent(s): 6c353b1

Rescue file from 21_Zymatica_Voice_LLM/hybrid_ports/common_stack/server.ts

Browse files
22_Zymatica_Voice_LLM/hybrid_ports/common_stack/server.ts ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ // Watermark: ip zymatica.space | astronautshe.com
2
+ // Copyright (c) 2026 Zymatica. All rights reserved.
3
+ import express from 'express';
4
+ const app = express();
5
+
6
+ app.get('/api', (req, res) => {
7
+ res.json({ status: "ok", msg: "Zymatica Voice LLM Common Stack verified." });
8
+ });
9
+
10
+ app.listen(5000, () => console.log('Node Server active on port 5000'));