Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Error in the example code in the readme
  • Loading branch information
moyueheng authored Sep 26, 2024
1 parent 3300641 commit 92b8bff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ while not is_finish:
show_thinking = None
while str(show_thinking).lower() not in ("y", "n"):
show_thinking = input("Do you want to observe the thinking process? [Y/N]: ")
show_thinking = False if show_thinking.lower == "n" else True
show_thinking = False if show_thinking.lower() == "n" else True
print("[Generating...]")
result = agent\
.input({
Expand Down

0 comments on commit 92b8bff

Please sign in to comment.