Skip to content

Commit

Permalink
Merge pull request #167 from moyueheng/main
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
Maplemx authored Sep 27, 2024
2 parents 3300641 + 92b8bff commit 6577d1c
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 6577d1c

Please sign in to comment.