fix: add bedrock,vertex extras to llamaindex scaffold deps#355
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the LlamaIndex scaffold so newly generated projects install the provider extras required by the default Bedrock-based template, preventing uipath init failures due to missing optional dependencies.
Changes:
- Update the scaffolded
pyproject.tomldependency touipath-llamaindex[bedrock,vertex]and drop the unusedllama-index-llms-openaidirect dependency. - Bump
uipath-llamaindexpackage version from0.5.15to0.5.16. - Sync the version bump into
uv.lock.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| packages/uipath-llamaindex/src/uipath_llamaindex/_cli/cli_new.py | Adjusts generated project dependencies to include bedrock,vertex extras and removes unused OpenAI provider dependency. |
| packages/uipath-llamaindex/pyproject.toml | Bumps package version to 0.5.16. |
| packages/uipath-llamaindex/uv.lock | Updates locked editable package version to 0.5.16. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
EusebiuJecan07
approved these changes
Jun 9, 2026
39e0570 to
09bde2f
Compare
09bde2f to
52801c5
Compare
|
edis-uipath
approved these changes
Jun 9, 2026
alessandromuresan
approved these changes
Jun 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Summary
uipath-llamaindex[bedrock,vertex]so the default Bedrock model resolves onuipath initllama-index-llms-openaidep (scaffold no longer imports plainOpenAI)Why
the scaffold template now defaults to a Bedrock model, but the generated
pyproject.tomldidn't pull the provider extra ->uipath initfailed with "the 'bedrock' extra is required". this follows up #354, which merged before the extras fix landed.