Commit 40ca6d3c authored by Pol Dellaiera's avatar Pol Dellaiera
Browse files

litellm: init at 1.63.11

parent 79e95661
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
{ python3Packages }:

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