Skip to content

Commit 07da76a

Browse files
committed
fix: fixed type error
1 parent 02f6338 commit 07da76a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gptme/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def handle_cmd(
116116
print("Replaying conversation...")
117117
for msg in logmanager.log:
118118
if msg.role == "assistant":
119-
for msg in execute_msg(msg):
119+
for msg in execute_msg(msg, ask=True):
120120
print_log(msg, oneline=False)
121121
case _:
122122
print("Available commands:")

0 commit comments

Comments
 (0)