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.
Signed-off-by: Tomas Coufal [email protected]
When standing up a dev setup, I've discovered a mismatch between
pyproject.toml
anduv.lock
- call touv sync --extra dev
results in diff onuv.lock
.It seems like during the last version bump, the
uv.lock
was not regenerated. This discrepancy can be mitigated by adding auv-sync
hook to the precommit (fcf8893). The same hook is already present in thellama-stack
repo so I guess it would be worth adding it here as well.After adding the hook, I've just ran
precommit run -a
and discovered some discrepancies here and there, so I've fixed those in this PR as well (let me know if I should move them to a separate PR).This repo is also missing a precommit CI workflow, should I add that as well? Or would you prefer a separate PR?