Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion py/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ install-dev: install-build-deps
$(UV) pip install -r requirements-dev.txt

install-optional: install-dev
$(UV) pip install anthropic openai pydantic_ai agno google-genai google-adk dspy langsmith
$(UV) pip install -r requirements-optional.txt
$(UV) pip install -e .[temporal,otel]

.DEFAULT_GOAL := help
Expand Down
3 changes: 2 additions & 1 deletion py/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ def _pinned_python_version():
ANTHROPIC_VERSIONS = (LATEST, "0.50.0", "0.49.0", "0.48.0")
OPENAI_VERSIONS = (LATEST, "1.77.0", "1.71", "1.91", "1.92")
# litellm latest requires Python >= 3.10
LITELLM_VERSIONS = (LATEST, "1.74.0")
# Pin litellm because 1.82.7-1.82.8 are compromised: https://github.com/BerriAI/litellm/issues/24512
LITELLM_VERSIONS = ("1.82.0", "1.74.0")
# CLI bundling started in 0.1.10 - older versions require external Claude Code installation
CLAUDE_AGENT_SDK_VERSIONS = (LATEST, "0.1.10")
# Keep LATEST for newest API coverage, and pin 2.4.0 to cover the 2.4 -> 2.5 breaking change
Expand Down
9 changes: 9 additions & 0 deletions py/requirements-optional.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
anthropic==0.84.0
openai==2.24.0
pydantic_ai==1.66.0
agno==2.5.7
google-genai==1.66.0
google-adk==1.14.1
dspy==3.1.3
langsmith==0.7.12
litellm==1.82.0
Loading