LLM Council Deployer
initial push
41f0f2e
raw
history blame contribute delete
227 Bytes
from ninja import NinjaAPI
from apps.dashboard.api import router as dashboard_router
api = NinjaAPI()
api.add_router("/dashboard", dashboard_router)
@api.get("/hello")
def hello(request):
return "Hello form LLM Council"