From 9b2dcb2807dbf6ead895ce1cc09f71e9c4fae98f Mon Sep 17 00:00:00 2001 From: Antonio Loison Date: Fri, 10 May 2024 10:56:36 +0200 Subject: [PATCH] chore(pyproject.toml): add diskcache as extra --- poetry.lock | 3 ++- pyproject.toml | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 842dfe3108..0c1b26a9ae 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2679,10 +2679,11 @@ docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.link testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"] [extras] +extra-cache = ["diskcache"] extra-proxy = ["azure-identity", "azure-keyvault-secrets", "google-cloud-kms", "prisma", "resend"] proxy = ["PyJWT", "apscheduler", "backoff", "cryptography", "fastapi", "fastapi-sso", "gunicorn", "orjson", "python-multipart", "pyyaml", "rq", "uvicorn"] [metadata] lock-version = "2.0" python-versions = ">=3.8.1,<4.0, !=3.9.7" -content-hash = "9d2c78a508742a83a9dce1f3f55f8ef9cac8a453a863eaa91a179f031894be1b" +content-hash = "a21a41c1f683d7cb9a07fa76ee396b7da95cebf8c82d44de92e318916436a506" diff --git a/pyproject.toml b/pyproject.toml index 81e2e9abff..486a04f3c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,6 +66,9 @@ extra_proxy = [ "resend" ] +extra_cache = [ + "diskcache" +] [tool.poetry.scripts] litellm = 'litellm:run_server'