kiln-ai 0.5.0__tar.gz → 0.5.2__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 kiln-ai might be problematic. Click here for more details.
- kiln_ai-0.5.2/.gitignore +15 -0
- kiln_ai-0.5.2/.python-version +1 -0
- kiln_ai-0.5.2/PKG-INFO +48 -0
- kiln_ai-0.5.0/pyproject.toml → kiln_ai-0.5.2/POET +2 -2
- kiln_ai-0.5.2/README.md +23 -0
- kiln_ai-0.5.2/docs/core_library_docs/index.html +7 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/adapters/base_adapter.html +1070 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/adapters/langchain_adapters.html +650 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/adapters/ml_model_list.html +1783 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/adapters/prompt_builders.html +863 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/adapters/repair/repair_task.html +779 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/adapters/repair.html +261 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/adapters.html +283 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/datamodel/basemodel.html +1938 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/datamodel/json_schema.html +364 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/datamodel.html +3156 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/utils/config.html +967 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/utils/formatting.html +268 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai/utils.html +261 -0
- kiln_ai-0.5.2/docs/core_library_docs/kiln_ai.html +270 -0
- kiln_ai-0.5.2/docs/core_library_docs/search.js +46 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/index.html +7 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/adapters/base_adapter.html +1072 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/adapters/langchain_adapters.html +652 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/adapters/ml_model_list.html +1925 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/adapters/prompt_builders.html +1127 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/adapters/repair/repair_task.html +758 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/adapters/repair.html +265 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/adapters.html +287 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/datamodel/basemodel.html +2105 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/datamodel/json_schema.html +445 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/datamodel.html +3145 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/utils/config.html +969 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/utils/formatting.html +270 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai/utils.html +265 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/kiln_ai.html +275 -0
- kiln_ai-0.5.2/docs/kiln_core_docs/search.js +46 -0
- kiln_ai-0.5.2/kiln_ai/__init__.py +3 -0
- kiln_ai-0.5.2/kiln_ai/adapters/__init__.py +23 -0
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/base_adapter.py +29 -0
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/langchain_adapters.py +3 -2
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/ml_model_list.py +89 -4
- kiln_ai-0.5.2/kiln_ai/adapters/prompt_builders.py +221 -0
- kiln_ai-0.5.2/kiln_ai/adapters/repair/__init__.py +11 -0
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/repair/repair_task.py +2 -1
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/repair/test_repair_task.py +2 -1
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/test_langchain_adapter.py +2 -1
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/test_ml_model_list.py +2 -2
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/test_prompt_adaptors.py +3 -2
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/test_prompt_builders.py +25 -2
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/test_saving_adapter_results.py +1 -0
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/adapters/test_structured_output.py +2 -1
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/__init__.py +81 -29
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/basemodel.py +84 -3
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/json_schema.py +35 -1
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/test_basemodel.py +31 -0
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/test_datasource.py +5 -6
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/test_example_models.py +11 -40
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/test_json_schema.py +2 -1
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/test_models.py +2 -1
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/test_nested_save.py +2 -1
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/datamodel/test_output_rating.py +2 -1
- kiln_ai-0.5.2/kiln_ai/utils/__init__.py +12 -0
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/utils/test_config.py +1 -0
- kiln_ai-0.5.2/kiln_ai.egg-info/PKG-INFO +45 -0
- kiln_ai-0.5.2/kiln_ai.egg-info/SOURCES.txt +38 -0
- kiln_ai-0.5.2/kiln_ai.egg-info/dependency_links.txt +1 -0
- kiln_ai-0.5.2/kiln_ai.egg-info/requires.txt +11 -0
- kiln_ai-0.5.2/kiln_ai.egg-info/top_level.txt +1 -0
- kiln_ai-0.5.2/poetry.lock +101 -0
- kiln_ai-0.5.2/pyproject.toml +48 -0
- kiln_ai-0.5.2/setup.cfg +1 -0
- kiln_ai-0.5.2/uv.lock +2113 -0
- kiln_ai-0.5.0/PKG-INFO +0 -37
- kiln_ai-0.5.0/README.md +0 -16
- kiln_ai-0.5.0/kiln_ai/adapters/prompt_builders.py +0 -122
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/LICENSE.txt +0 -0
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/utils/config.py +0 -0
- {kiln_ai-0.5.0 → kiln_ai-0.5.2}/kiln_ai/utils/formatting.py +0 -0
kiln_ai-0.5.2/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.12
|
kiln_ai-0.5.2/PKG-INFO
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: kiln-ai
|
|
3
|
+
Version: 0.5.2
|
|
4
|
+
Summary: Kiln AI
|
|
5
|
+
Project-URL: Homepage, https://getkiln.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/Kiln-AI/kiln
|
|
7
|
+
Project-URL: Documentation, https://kiln-ai.github.io/Kiln/kiln_core_docs/kiln_ai.html
|
|
8
|
+
Project-URL: Issues, https://github.com/Kiln-AI/kiln/issues
|
|
9
|
+
Author-email: "Steve Cosman, Chesterfield Laboratories Inc" <scosman@users.noreply.github.com>
|
|
10
|
+
License-File: LICENSE.txt
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Requires-Dist: coverage>=7.6.4
|
|
13
|
+
Requires-Dist: jsonschema>=4.23.0
|
|
14
|
+
Requires-Dist: langchain-aws>=0.2.4
|
|
15
|
+
Requires-Dist: langchain-groq>=0.2.0
|
|
16
|
+
Requires-Dist: langchain-ollama>=0.2.0
|
|
17
|
+
Requires-Dist: langchain-openai>=0.2.4
|
|
18
|
+
Requires-Dist: langchain>=0.3.5
|
|
19
|
+
Requires-Dist: pdoc>=15.0.0
|
|
20
|
+
Requires-Dist: pydantic>=2.9.2
|
|
21
|
+
Requires-Dist: pytest-cov>=6.0.0
|
|
22
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
23
|
+
Requires-Dist: typing-extensions>=4.12.2
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# kiln_ai
|
|
27
|
+
|
|
28
|
+
[](https://pypi.org/project/kiln-ai)
|
|
29
|
+
[](https://pypi.org/project/kiln-ai)
|
|
30
|
+
[](https://kiln-ai.github.io/Kiln/kiln_core_docs/index.html)
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Installation
|
|
35
|
+
|
|
36
|
+
```console
|
|
37
|
+
pip install kiln_ai
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## About Kiln AI
|
|
41
|
+
|
|
42
|
+
Learn more about Kiln AI at [getkiln.ai](https://getkiln.ai)
|
|
43
|
+
|
|
44
|
+
This package is the Kiln AI core library. There is also a separate desktop application and server package.
|
|
45
|
+
|
|
46
|
+
Github: [github.com/Kiln-AI/kiln](https://github.com/Kiln-AI/kiln)
|
|
47
|
+
|
|
48
|
+
Docs: [https://kiln-ai.github.io/Kiln/kiln_core_docs/index.html](https://kiln-ai.github.io/Kiln/kiln_core_docs/index.html)
|
|
@@ -4,14 +4,14 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "kiln-ai"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.1"
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
description = 'Kiln AI'
|
|
10
10
|
authors = [
|
|
11
11
|
"Steve Cosman, Chesterfield Laboratories Inc <scosman@users.noreply.github.com>",
|
|
12
12
|
]
|
|
13
13
|
license = "Proprietary"
|
|
14
|
-
homepage = "https://
|
|
14
|
+
homepage = "https://getkiln.ai"
|
|
15
15
|
repository = "https://github.com/Kiln-AI/kiln"
|
|
16
16
|
documentation = "https://github.com/Kiln-AI/kiln#readme"
|
|
17
17
|
|
kiln_ai-0.5.2/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# kiln_ai
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/kiln-ai)
|
|
4
|
+
[](https://pypi.org/project/kiln-ai)
|
|
5
|
+
[](https://kiln-ai.github.io/Kiln/kiln_core_docs/index.html)
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```console
|
|
12
|
+
pip install kiln_ai
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## About Kiln AI
|
|
16
|
+
|
|
17
|
+
Learn more about Kiln AI at [getkiln.ai](https://getkiln.ai)
|
|
18
|
+
|
|
19
|
+
This package is the Kiln AI core library. There is also a separate desktop application and server package.
|
|
20
|
+
|
|
21
|
+
Github: [github.com/Kiln-AI/kiln](https://github.com/Kiln-AI/kiln)
|
|
22
|
+
|
|
23
|
+
Docs: [https://kiln-ai.github.io/Kiln/kiln_core_docs/index.html](https://kiln-ai.github.io/Kiln/kiln_core_docs/index.html)
|