Skip to content

Commit c2488ed

Browse files
committed
doc reporting and inc version
1 parent 53fc387 commit c2488ed

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,14 @@ agent.tools.clipboard.copy("...")
189189
result = agent.tools.clipboard.paste()
190190
```
191191

192-
### 📜 Logging
192+
### 📜 Logging & Reporting
193193

194-
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`.
195195

196196
```python
197197
import logging
198198

199-
with VisionAgent(log_level=logging.DEBUG) as agent:
199+
with VisionAgent(log_level=logging.DEBUG, enable_report=True) as agent:
200200
agent...
201201
```
202202

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "askui"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
description = "Automate computer tasks in Python"
55
authors = [
66
{name = "askui GmbH", email = "info@askui.com"},

0 commit comments

Comments
 (0)