Skip to content

Commit f55ec86

Browse files
committed
update readme
1 parent 9597193 commit f55ec86

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ If you would like to test Agent S3 while making changes, clone the repository an
110110
pip install -e .
111111
```
112112

113+
Don't forget to also `brew install tesseract`! Pytesseract requires this extra installation to work.
114+
113115
### API Configuration
114116

115117
#### Option 1: Environment Variables

gui_agents/s3/utils/common_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ def call_llm_formatted(generator, format_checkers, **kwargs):
7373
attempt = 0
7474
response = ""
7575
if kwargs.get("messages") is None:
76-
messages = generator.messages.copy() # Copy messages to avoid modifying the original
76+
messages = (
77+
generator.messages.copy()
78+
) # Copy messages to avoid modifying the original
7779
else:
7880
messages = kwargs["messages"]
7981
del kwargs["messages"] # Remove messages from kwargs to avoid passing it twice

0 commit comments

Comments
 (0)