File size: 246 Bytes
4b35062
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from fastapi import FastAPI
from api.endpoints import codelama, ollama

app = FastAPI()

# Register routers if you have them
app.include_router(codelama.router, prefix="/run-codelama")
app.include_router(ollama.router, prefix="/ollama-response")