Add mangum.

This commit is contained in:
David Manouchehri 2023-11-23 00:04:47 -05:00
parent 4d9aa7a3f7
commit 60ca43b6d9
No known key found for this signature in database
3 changed files with 7 additions and 2 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")