litellm: init at 1.63.11

This commit is contained in:
Pol Dellaiera 2025-03-16 11:04:18 +01:00
parent 79e95661a6
commit 40ca6d3c04

View File

@ -0,0 +1,13 @@
{ python3Packages }:
let
litellm = python3Packages.litellm;
in
python3Packages.toPythonApplication (
litellm.overridePythonAttrs (oldAttrs: {
dependencies =
(oldAttrs.dependencies or [ ])
++ litellm.optional-dependencies.proxy
++ litellm.optional-dependencies.extra_proxy;
})
)