mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-17 23:51:30 +00:00
7 lines
141 B
Python
7 lines
141 B
Python
from typing import Final
|
|
|
|
from mangum import Mangum
|
|
|
|
from litellm.proxy.proxy_server import app
|
|
|
|
handler: Final = Mangum(app, lifespan="on")
|