We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3300641 + 92b8bff commit 6577d1cCopy full SHA for 6577d1c
1 file changed
README.md
@@ -167,7 +167,7 @@ while not is_finish:
167
show_thinking = None
168
while str(show_thinking).lower() not in ("y", "n"):
169
show_thinking = input("Do you want to observe the thinking process? [Y/N]: ")
170
- show_thinking = False if show_thinking.lower == "n" else True
+ show_thinking = False if show_thinking.lower() == "n" else True
171
print("[Generating...]")
172
result = agent\
173
.input({
0 commit comments