Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
from litellm.proxy.proxy_server import app as proxy_app | |
app = FastAPI() | |
# Mount the LiteLLM Proxy server | |
app.mount("/proxy", proxy_app) | |
def home(): | |
return {"message": "LiteLLM Server is running! Visit /proxy/docs for the API documentation"} | |