Skip to content

Commit 9344420

Browse files
authored
Merge pull request #208 from kracekumar/fix-prompt-typo
Fix the prompt typo in llm.py
2 parents b0a41f5 + a3324d8 commit 9344420

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
12
## TBD
23

34
### Features
45

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

8+
### Internal
9+
10+
* Fix typo `pormpt`to `prompt` in `special/llm.py`.
11+
12+
713
## 1.14.4 - 2025-01-31
814

915
### Bug Fixes

litecli/packages/special/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def handle_llm(text, cur) -> Tuple[str, Optional[str]]:
222222
if "-c" in parts:
223223
capture_output = True
224224
use_context = False
225-
# If the parts has `pormpt` command without `-c` then use context to the prompt.
225+
# If the parts has `prompt` command without `-c` then use context to the prompt.
226226
# \llm -m ollama prompt "Most visited urls?"
227227
elif "prompt" in parts: # User might invoke prompt with an option flag in the first argument.
228228
capture_output = True

0 commit comments

Comments
 (0)