Spaces:
Building
Building
File size: 302 Bytes
4b35062 55cfbd7 4b35062 55cfbd7 4b35062 55cfbd7 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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"])
|