We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c1056f + 20f8b46 commit 62e8de6Copy full SHA for 62e8de6
2 files changed
CHANGELOG.md
@@ -5,6 +5,10 @@
5
* Support `--help` in the `\llm`and `\llm+` command. ([#214](https://github.com/dbcli/litecli/pull/214))
6
* Make the history file location configurable. ([#206](https://github.com/dbcli/litecli/issues/206))
7
8
+### Bug Fixes
9
+
10
+* Fix a bug where the `\llm` command on alternate invocations weren't detected correctly. (#211)
11
12
### Internal
13
14
* Fix typo `pormpt`to `prompt` in `special/llm.py`.
litecli/main.py
@@ -444,7 +444,7 @@ def one_iteration(text=None):
444
self.echo(str(e), err=True, fg="red")
445
return
446
447
- if special.is_llm_command(text):
+ while special.is_llm_command(text):
448
try:
449
start = time()
450
cur = self.sqlexecute.conn and self.sqlexecute.conn.cursor()
0 commit comments