clai 0.2.1__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of clai might be problematic. Click here for more details.
- {clai-0.2.1 → clai-0.2.3}/PKG-INFO +5 -3
- {clai-0.2.1 → clai-0.2.3}/README.md +3 -1
- {clai-0.2.1 → clai-0.2.3}/.gitignore +0 -0
- {clai-0.2.1 → clai-0.2.3}/clai/__init__.py +0 -0
- {clai-0.2.1 → clai-0.2.3}/clai/__main__.py +0 -0
- {clai-0.2.1 → clai-0.2.3}/pyproject.toml +0 -0
- {clai-0.2.1 → clai-0.2.3}/update_readme.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: clai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: PydanticAI CLI: command line interface to chat to LLMs
|
|
5
5
|
Author-email: Samuel Colvin <samuel@pydantic.dev>, Marcelo Trylesinski <marcelotryle@gmail.com>, David Montague <david@pydantic.dev>, Alex Hall <alex@pydantic.dev>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -24,7 +24,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
24
24
|
Classifier: Topic :: Internet
|
|
25
25
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
26
26
|
Requires-Python: >=3.9
|
|
27
|
-
Requires-Dist: pydantic-ai==0.2.
|
|
27
|
+
Requires-Dist: pydantic-ai==0.2.3
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
|
|
30
30
|
# clai
|
|
@@ -82,7 +82,7 @@ Either way, running `clai` will start an interactive session where you can chat
|
|
|
82
82
|
## Help
|
|
83
83
|
|
|
84
84
|
```
|
|
85
|
-
usage: clai [-h] [-m [MODEL]] [-l] [-t [CODE_THEME]] [--no-stream] [--version] [prompt]
|
|
85
|
+
usage: clai [-h] [-m [MODEL]] [-a AGENT] [-l] [-t [CODE_THEME]] [--no-stream] [--version] [prompt]
|
|
86
86
|
|
|
87
87
|
PydanticAI CLI v...
|
|
88
88
|
|
|
@@ -98,6 +98,8 @@ options:
|
|
|
98
98
|
-h, --help show this help message and exit
|
|
99
99
|
-m [MODEL], --model [MODEL]
|
|
100
100
|
Model to use, in format "<provider>:<model>" e.g. "openai:gpt-4o" or "anthropic:claude-3-7-sonnet-latest". Defaults to "openai:gpt-4o".
|
|
101
|
+
-a AGENT, --agent AGENT
|
|
102
|
+
Custom Agent to use, in format "module:variable", e.g. "mymodule.submodule:my_agent"
|
|
101
103
|
-l, --list-models List all available models and exit
|
|
102
104
|
-t [CODE_THEME], --code-theme [CODE_THEME]
|
|
103
105
|
Which colors to use for code, can be "dark", "light" or any theme from pygments.org/styles/. Defaults to "dark" which works well on dark terminals.
|
|
@@ -53,7 +53,7 @@ Either way, running `clai` will start an interactive session where you can chat
|
|
|
53
53
|
## Help
|
|
54
54
|
|
|
55
55
|
```
|
|
56
|
-
usage: clai [-h] [-m [MODEL]] [-l] [-t [CODE_THEME]] [--no-stream] [--version] [prompt]
|
|
56
|
+
usage: clai [-h] [-m [MODEL]] [-a AGENT] [-l] [-t [CODE_THEME]] [--no-stream] [--version] [prompt]
|
|
57
57
|
|
|
58
58
|
PydanticAI CLI v...
|
|
59
59
|
|
|
@@ -69,6 +69,8 @@ options:
|
|
|
69
69
|
-h, --help show this help message and exit
|
|
70
70
|
-m [MODEL], --model [MODEL]
|
|
71
71
|
Model to use, in format "<provider>:<model>" e.g. "openai:gpt-4o" or "anthropic:claude-3-7-sonnet-latest". Defaults to "openai:gpt-4o".
|
|
72
|
+
-a AGENT, --agent AGENT
|
|
73
|
+
Custom Agent to use, in format "module:variable", e.g. "mymodule.submodule:my_agent"
|
|
72
74
|
-l, --list-models List all available models and exit
|
|
73
75
|
-t [CODE_THEME], --code-theme [CODE_THEME]
|
|
74
76
|
Which colors to use for code, can be "dark", "light" or any theme from pygments.org/styles/. Defaults to "dark" which works well on dark terminals.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|