You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/04_using_models.md
+11-6Lines changed: 11 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,14 +18,19 @@ with ComputerAgent() as agent:
18
18
19
19
## Configuring Model IDs
20
20
21
-
If you want to use another model, you select one of the available ones and set is through overriding the model_id in the provider:
21
+
If you want to use another model, you select one of the available ones and set as an environment variable (**currently only supported for vlm_provider!**):
22
+
```
23
+
VLM_PROVIDER_MODEL_ID=claude-opus-4-6
24
+
```
25
+
26
+
Alternatively, you can also set it through overriding the model_id in the provider:
22
27
23
28
```python
24
29
from askui import AgentSettings, ComputerAgent
25
30
from askui.model_providers import AskUIVlmProvider, AskUIImageQAProvider
0 commit comments