Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

* Make the history file location configurable. ([#206](https://github.com/dbcli/litecli/issues/206))

### Bug Fixes

* Fix a bug where the `\llm` command on alternate invocations weren't detected correctly. (#211)

### Internal

* Fix typo `pormpt`to `prompt` in `special/llm.py`.
Expand Down
2 changes: 1 addition & 1 deletion litecli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def one_iteration(text=None):
self.echo(str(e), err=True, fg="red")
return

if special.is_llm_command(text):
while special.is_llm_command(text):
try:
start = time()
cur = self.sqlexecute.conn and self.sqlexecute.conn.cursor()
Expand Down
Loading