clai 0.8.1__tar.gz → 1.11.0__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.
- {clai-0.8.1 → clai-1.11.0}/.gitignore +2 -1
- {clai-0.8.1 → clai-1.11.0}/PKG-INFO +5 -6
- {clai-0.8.1 → clai-1.11.0}/README.md +1 -1
- {clai-0.8.1 → clai-1.11.0}/pyproject.toml +2 -3
- {clai-0.8.1 → clai-1.11.0}/LICENSE +0 -0
- {clai-0.8.1 → clai-1.11.0}/clai/__init__.py +0 -0
- {clai-0.8.1 → clai-1.11.0}/clai/__main__.py +0 -0
- {clai-0.8.1 → clai-1.11.0}/update_readme.py +0 -0
|
@@ -10,7 +10,7 @@ env*/
|
|
|
10
10
|
/TODO.md
|
|
11
11
|
/postgres-data/
|
|
12
12
|
.DS_Store
|
|
13
|
-
|
|
13
|
+
.chat_app_messages.sqlite
|
|
14
14
|
.cache/
|
|
15
15
|
.vscode/
|
|
16
16
|
/question_graph_history.json
|
|
@@ -20,3 +20,4 @@ node_modules/
|
|
|
20
20
|
.coverage*
|
|
21
21
|
/test_tmp/
|
|
22
22
|
.mcp.json
|
|
23
|
+
.claude/
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: clai
|
|
3
|
-
Version:
|
|
3
|
+
Version: 1.11.0
|
|
4
4
|
Summary: Pydantic AI 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>, Douwe Maan <douwe@pydantic.dev>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
License-File: LICENSE
|
|
8
|
-
Classifier: Development Status ::
|
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
9
9
|
Classifier: Environment :: Console
|
|
10
10
|
Classifier: Environment :: MacOS X
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -17,15 +17,14 @@ Classifier: Operating System :: Unix
|
|
|
17
17
|
Classifier: Programming Language :: Python
|
|
18
18
|
Classifier: Programming Language :: Python :: 3
|
|
19
19
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
24
|
Classifier: Topic :: Internet
|
|
26
25
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
27
|
-
Requires-Python: >=3.
|
|
28
|
-
Requires-Dist: pydantic-ai==
|
|
26
|
+
Requires-Python: >=3.10
|
|
27
|
+
Requires-Dist: pydantic-ai==1.11.0
|
|
29
28
|
Description-Content-Type: text/markdown
|
|
30
29
|
|
|
31
30
|
# clai
|
|
@@ -100,7 +99,7 @@ positional arguments:
|
|
|
100
99
|
options:
|
|
101
100
|
-h, --help show this help message and exit
|
|
102
101
|
-m [MODEL], --model [MODEL]
|
|
103
|
-
Model to use, in format "<provider>:<model>" e.g. "openai:gpt-
|
|
102
|
+
Model to use, in format "<provider>:<model>" e.g. "openai:gpt-5" or "anthropic:claude-sonnet-4-5". Defaults to "openai:gpt-5".
|
|
104
103
|
-a AGENT, --agent AGENT
|
|
105
104
|
Custom Agent to use, in format "module:variable", e.g. "mymodule.submodule:my_agent"
|
|
106
105
|
-l, --list-models List all available models and exit
|
|
@@ -70,7 +70,7 @@ positional arguments:
|
|
|
70
70
|
options:
|
|
71
71
|
-h, --help show this help message and exit
|
|
72
72
|
-m [MODEL], --model [MODEL]
|
|
73
|
-
Model to use, in format "<provider>:<model>" e.g. "openai:gpt-
|
|
73
|
+
Model to use, in format "<provider>:<model>" e.g. "openai:gpt-5" or "anthropic:claude-sonnet-4-5". Defaults to "openai:gpt-5".
|
|
74
74
|
-a AGENT, --agent AGENT
|
|
75
75
|
Custom Agent to use, in format "module:variable", e.g. "mymodule.submodule:my_agent"
|
|
76
76
|
-l, --list-models List all available models and exit
|
|
@@ -24,11 +24,10 @@ authors = [
|
|
|
24
24
|
license = "MIT"
|
|
25
25
|
readme = "README.md"
|
|
26
26
|
classifiers = [
|
|
27
|
-
"Development Status ::
|
|
27
|
+
"Development Status :: 5 - Production/Stable",
|
|
28
28
|
"Programming Language :: Python",
|
|
29
29
|
"Programming Language :: Python :: 3",
|
|
30
30
|
"Programming Language :: Python :: 3 :: Only",
|
|
31
|
-
"Programming Language :: Python :: 3.9",
|
|
32
31
|
"Programming Language :: Python :: 3.10",
|
|
33
32
|
"Programming Language :: Python :: 3.11",
|
|
34
33
|
"Programming Language :: Python :: 3.12",
|
|
@@ -44,7 +43,7 @@ classifiers = [
|
|
|
44
43
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
45
44
|
"Topic :: Internet",
|
|
46
45
|
]
|
|
47
|
-
requires-python = ">=3.
|
|
46
|
+
requires-python = ">=3.10"
|
|
48
47
|
|
|
49
48
|
[tool.hatch.metadata.hooks.uv-dynamic-versioning]
|
|
50
49
|
dependencies = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|