Spaces:
Sleeping
Sleeping
File size: 260 Bytes
c40c75a |
1 2 3 4 5 6 7 8 9 10 11 12 |
from fastapi import FastAPI
from litellm.playground_server import add_playground_routes
app = FastAPI()
# Add LiteLLM Playground UI at `/docs`
add_playground_routes(app)
@app.get("/")
def home():
return {"message": "LiteLLM UI is running! Visit /docs"}
|