Rescue file from 21_Zymatica_Voice_LLM/hybrid_ports/common_stack/app.py
Browse files
22_Zymatica_Voice_LLM/hybrid_ports/common_stack/app.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Watermark: ip zymatica.space | astronautshe.com
|
| 2 |
+
# Copyright (c) 2026 Zymatica. All rights reserved.
|
| 3 |
+
from fastapi import FastAPI
|
| 4 |
+
import uvicorn
|
| 5 |
+
|
| 6 |
+
app = FastAPI(title="Zymatica Voice Common API")
|
| 7 |
+
|
| 8 |
+
@app.get("/")
|
| 9 |
+
def read_root():
|
| 10 |
+
return {"status": "online", "verification": "Zymatica Voice LLM Common Stack verified."}
|
| 11 |
+
|
| 12 |
+
if __name__ == "__main__":
|
| 13 |
+
uvicorn.run(app, host="127.0.0.1", port=5000)
|