build(Dockerfile): fixing build requirements

This commit is contained in:
Krrish Dholakia 2023-12-16 17:52:30 -08:00
parent d9dfa3defc
commit c87cdbd156
5 changed files with 66 additions and 51 deletions

View file

@ -18,7 +18,6 @@ try:
import appdirs
import backoff
import yaml
import rq
import orjson
except ImportError:
import sys
@ -34,7 +33,6 @@ except ImportError:
"appdirs",
"backoff",
"pyyaml",
"rq",
"orjson"
]
)
@ -111,7 +109,6 @@ from fastapi.security.api_key import APIKeyHeader
import json
import logging
from typing import Union
# from litellm.proxy.queue import start_rq_worker_in_background
app = FastAPI(docs_url="/", title="LiteLLM API")
router = APIRouter()