From 39d934ee7195b24cd7843b574082b8c9315d1fba Mon Sep 17 00:00:00 2001 From: LegendEvent Date: Fri, 23 Jan 2026 20:39:35 +0100 Subject: [PATCH] chore: upgrade litellm to 1.81.1 for zai provider support Updates LiteLLM from ~1.80.7 to ~1.81.1 which includes full support for z.ai (Zhipu AI) provider using the 'zai/model-name' format. This enables Strix to work with z.ai subscription credentials by setting STRIX_LLM="zai/glm-4.7" with appropriate LLM_API_KEY and LLM_API_BASE environment variables. Changes: - Updated litellm version constraint in pyproject.toml - No breaking changes to Strix API or configuration Closes #ISSUE_ID (to be linked if applicable) Signed-off-by: legendevent --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 12c3227..6c32647 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ strix = "strix.interface.main:main" [tool.poetry.dependencies] python = "^3.12" # Core CLI dependencies -litellm = { version = "~1.80.7", extras = ["proxy"] } +litellm = { version = "~1.81.1", extras = ["proxy"] } tenacity = "^9.0.0" pydantic = {extras = ["email"], version = "^2.11.3"} rich = "*"