refactor location of proxy

This commit is contained in:
Ishaan Jaff 2025-04-23 14:38:44 -07:00
parent baa5564f95
commit ce58c53ff1
413 changed files with 2087 additions and 2088 deletions

4
litellm_proxy/lambda.py Normal file
View file

@ -0,0 +1,4 @@
from mangum import Mangum
from litellm_proxy.proxy_server import app
handler = Mangum(app, lifespan="on")