Skip to content

Commit ecae024

Browse files
committed
Check for \llm in a loop to make sure alternate invokations are not missed.
1 parent 4a7bd7d commit ecae024

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

litecli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def one_iteration(text=None):
444444
self.echo(str(e), err=True, fg="red")
445445
return
446446

447-
if special.is_llm_command(text):
447+
while special.is_llm_command(text):
448448
try:
449449
start = time()
450450
cur = self.sqlexecute.conn and self.sqlexecute.conn.cursor()

0 commit comments

Comments
 (0)