ss
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
from fastapi import FastAPI
|
2 |
-
from
|
3 |
|
4 |
app = FastAPI()
|
5 |
|
@@ -9,3 +9,4 @@ app.mount("/sse", vector_app)
|
|
9 |
@app.get("/", tags=["health"])
|
10 |
async def root():
|
11 |
return {"status": "ok"}
|
|
|
|
1 |
from fastapi import FastAPI
|
2 |
+
from mcp_server_mariadb_vector.server import create_server # corrected import
|
3 |
|
4 |
app = FastAPI()
|
5 |
|
|
|
9 |
@app.get("/", tags=["health"])
|
10 |
async def root():
|
11 |
return {"status": "ok"}
|
12 |
+
|