Spaces:
Building
Building
from fastapi import FastAPI | |
from api.endpoints import phi | |
app = FastAPI( | |
title="Quantum-API", | |
description="Quantum API powered by the Ollama φ (phi) model", | |
version="1.0.0" | |
) | |
# Mount the phi endpoint at /phi-response/ | |
app.include_router(phi.router, prefix="/phi-response", tags=["Phi"]) | |