Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: pin autogen and langgraph-prebuilt #1376

Closed
wants to merge 1 commit into from
Closed
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 .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
python -m uv pip install plugins/${{ matrix.package }}
python -m uv pip install '.[all]'
python -m uv pip install 'numpy<2' python-dotenv
python -m uv pip install unstructured
python -m uv pip unstructured ag2[openai] 'langgraph-prebuilt>=0.1.0'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid pip command syntax - python -m uv pip unstructured is missing install command which will cause installation failure

📝 Committable Code Suggestion

‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
python -m uv pip unstructured ag2[openai] 'langgraph-prebuilt>=0.1.0'
python -m uv pip install unstructured ag2[openai] 'langgraph-prebuilt>=0.1.0'

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing 'install' in the pip command. Ensure it uses 'pip install' to correctly install packages.

Suggested change
python -m uv pip unstructured ag2[openai] 'langgraph-prebuilt>=0.1.0'
python -m uv pip install unstructured ag2[openai] 'langgraph-prebuilt>=0.1.0'


COMPOSIO_BASE_URL=${{ env.COMPOSIO_BASE_URL }} COMPOSIO_API_KEY=${{ env.COMPOSIO_API_KEY }} COMPOSIO_LOGGING_LEVEL='debug' CI=false PLUGIN_TO_TEST=${{ matrix.package }} python -m uv run pytest -vv tests/test_example.py
COMPOSIO_BASE_URL=${{ env.COMPOSIO_BASE_URL }} COMPOSIO_API_KEY=${{ env.COMPOSIO_API_KEY }} COMPOSIO_LOGGING_LEVEL='debug' CI=false PLUGIN_TO_TEST=${{ matrix.package }} python -m uv run pytest -vv tests/test_load_tools.py
Expand Down