Kaballas's picture
ss
a6aed15
raw
history blame
208 Bytes
from fastapi import FastAPI
from fastmcp import create_server
app = FastAPI()
vector_app = create_server(transport="sse")
app.mount("/sse", vector_app)
@app.get("/")
def root():
return {"status": "ok"}