Quantum-API / api /main.py
subatomicERROR's picture
Refactored Quantum-API: removed codelama & ollama, added phi endpoint using Ollama
55cfbd7
raw
history blame
302 Bytes
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"])