Added HfApiModel import to web browser example (#461)
This commit is contained in:
parent
d69ae028fa
commit
a6d2cdaaef
|
@ -111,6 +111,8 @@ def save_screenshot(memory_step: ActionStep, agent: CodeAgent) -> None:
|
||||||
Now let's create our web automation agent:
|
Now let's create our web automation agent:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
|
from smolagents import HfApiModel
|
||||||
|
|
||||||
# Initialize the model
|
# Initialize the model
|
||||||
model_id = "meta-llama/Llama-3.3-70B-Instruct" # You can change this to your preferred model
|
model_id = "meta-llama/Llama-3.3-70B-Instruct" # You can change this to your preferred model
|
||||||
model = HfApiModel(model_id)
|
model = HfApiModel(model_id)
|
||||||
|
|
Loading…
Reference in New Issue