We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fee270 commit bdcd676Copy full SHA for bdcd676
2 files changed
CHANGELOG.md
@@ -11,6 +11,7 @@
11
### Internal
12
13
- Clean up ty type-checking for optional sqlean/llm imports.
14
+- Add an llm module alias for test patching.
15
16
## 1.18.0
17
litecli/packages/special/llm.py
@@ -29,6 +29,9 @@
29
from .main import Verbosity, parse_special_command
30
from .types import DBCursor
31
32
+# Alias for tests and patching.
33
+llm = llm_module
34
+
35
LLM_IMPORTED = llm_module is not None
36
37
cli: click.Command | None
0 commit comments