Nicolas Denier
ready for submission
5ad4868
raw
history blame
511 Bytes
from fastapi import FastAPI
from dotenv import load_dotenv
from tasks import audio
# Load environment variables
load_dotenv()
app = FastAPI(
title="Frugal AI Challenge API",
description="API for the Frugal AI Challenge evaluation endpoints"
)
# Include audio routers
app.include_router(audio.router)
@app.get("/")
async def root():
return {
"message": "Frugal AI Challenge submission API",
"endpoints": {
"audio": "/audio - Audio classification task"
}
}