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
You want a better understanding of what you agent is doing? Set the `log_level` to DEBUG.
194
+
You want a better understanding of what you agent is doing? Set the `log_level` to DEBUG. You can also generate a report of the automation run by setting `enable_report` to `True`.
195
195
196
196
```python
197
197
import logging
198
198
199
-
with VisionAgent(log_level=logging.DEBUG) as agent:
199
+
with VisionAgent(log_level=logging.DEBUG, enable_report=True) as agent:
0 commit comments