mbilvl commited on
Commit
4c87735
·
verified ·
1 Parent(s): 8c5c24b

chore: upgrade smolagents dependency to >=1.26.0

Browse files

### Description
This PR upgrades the `smolagents` pin in `requirements.txt` from the legacy `1.13.0` to `>=1.26.0`.

### Motivation
The current `1.13.0` pin relies heavily on `HfApiModel`. Because `HfApiModel` was deprecated and later removed starting in `v1.17.0`, students trying to use current course material syntax locally or on modern environments hit immediate dependency blockages. Bumping this ensures compatibility with the active `InferenceClientModel` codebase.

### Next Steps
Once this is merged, I have submitted another PR to update the class syntax in `app.py` to `InferenceClientModel` so the application runs perfectly on the new version.

Files changed (1) hide show
  1. requirements.txt +1 -1
requirements.txt CHANGED
@@ -1,5 +1,5 @@
1
  markdownify
2
- smolagents==1.13.0
3
  requests
4
  duckduckgo_search
5
  pandas
 
1
  markdownify
2
+ smolagents>=1.26.0
3
  requests
4
  duckduckgo_search
5
  pandas