fabricatio 0.9.5.dev3__cp313-cp313-manylinux_2_34_x86_64.whl → 0.10.1__cp313-cp313-manylinux_2_34_x86_64.whl
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.
- fabricatio/capabilities/__init__.py +3 -3
- fabricatio/rust.cpython-313-x86_64-linux-gnu.so +0 -0
- {fabricatio-0.9.5.dev3.data → fabricatio-0.10.1.data}/scripts/tdown +0 -0
- {fabricatio-0.9.5.dev3.dist-info → fabricatio-0.10.1.dist-info}/METADATA +66 -19
- fabricatio-0.10.1.dist-info/RECORD +12 -0
- fabricatio-0.9.5.dev3.dist-info/RECORD +0 -12
- {fabricatio-0.9.5.dev3.dist-info → fabricatio-0.10.1.dist-info}/WHEEL +0 -0
- {fabricatio-0.9.5.dev3.dist-info → fabricatio-0.10.1.dist-info}/licenses/LICENSE +0 -0
@@ -2,9 +2,10 @@
|
|
2
2
|
|
3
3
|
from importlib.util import find_spec
|
4
4
|
|
5
|
+
from fabricatio_core.capabilities.propose import Propose
|
5
6
|
from fabricatio_core.capabilities.usages import UseEmbedding, UseLLM
|
6
7
|
|
7
|
-
__all__ = ["UseEmbedding", "UseLLM"]
|
8
|
+
__all__ = ["Propose", "UseEmbedding", "UseLLM"]
|
8
9
|
|
9
10
|
if find_spec("fabricatio_tool"):
|
10
11
|
from fabricatio_tool.capabilities.handle import Handle
|
@@ -18,9 +19,8 @@ if find_spec("fabricatio_capabilities"):
|
|
18
19
|
from fabricatio_capabilities.capabilities.extract import Extract
|
19
20
|
from fabricatio_capabilities.capabilities.rating import Rating
|
20
21
|
from fabricatio_capabilities.capabilities.task import DispatchTask, ProposeTask
|
21
|
-
from fabricatio_core.capabilities.propose import Propose
|
22
22
|
|
23
|
-
__all__ += ["DispatchTask", "Extract", "HandleTask", "
|
23
|
+
__all__ += ["DispatchTask", "Extract", "HandleTask", "ProposeTask", "Rating"]
|
24
24
|
|
25
25
|
if find_spec("fabricatio_rag"):
|
26
26
|
from fabricatio_rag.capabilities.rag import RAG
|
Binary file
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fabricatio
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.10.1
|
4
4
|
Classifier: License :: OSI Approved :: MIT License
|
5
5
|
Classifier: Programming Language :: Rust
|
6
6
|
Classifier: Programming Language :: Python :: 3.12
|
@@ -10,7 +10,7 @@ Classifier: Framework :: AsyncIO
|
|
10
10
|
Classifier: Framework :: Pydantic :: 2
|
11
11
|
Classifier: Typing :: Typed
|
12
12
|
Requires-Dist: fabricatio-core
|
13
|
-
Requires-Dist: fabricatio[rag,cli,typst,rule,judge,capabilities,actions,improve,digest,memory,anki,question,tagging,improve,rag,yue,tool] ; extra == 'full'
|
13
|
+
Requires-Dist: fabricatio[rag,cli,typst,rule,judge,capabilities,actions,improve,digest,memory,anki,question,tagging,improve,rag,yue,tool,plot] ; extra == 'full'
|
14
14
|
Requires-Dist: fabricatio-anki ; extra == 'anki'
|
15
15
|
Requires-Dist: fabricatio-memory ; extra == 'memory'
|
16
16
|
Requires-Dist: fabricatio-digest ; extra == 'digest'
|
@@ -26,6 +26,7 @@ Requires-Dist: fabricatio-question ; extra == 'question'
|
|
26
26
|
Requires-Dist: fabricatio-tagging ; extra == 'tagging'
|
27
27
|
Requires-Dist: fabricatio-yue ; extra == 'yue'
|
28
28
|
Requires-Dist: fabricatio-tool ; extra == 'tool'
|
29
|
+
Requires-Dist: fabricatio-plot ; extra == 'plot'
|
29
30
|
Provides-Extra: full
|
30
31
|
Provides-Extra: anki
|
31
32
|
Provides-Extra: memory
|
@@ -42,6 +43,7 @@ Provides-Extra: question
|
|
42
43
|
Provides-Extra: tagging
|
43
44
|
Provides-Extra: yue
|
44
45
|
Provides-Extra: tool
|
46
|
+
Provides-Extra: plot
|
45
47
|
License-File: LICENSE
|
46
48
|
Summary: A LLM multi-agent framework.
|
47
49
|
Keywords: ai,agents,multi-agent,llm,pyo3
|
@@ -60,24 +62,69 @@ Project-URL: Issues, https://github.com/Whth/fabricatio/issues
|
|
60
62
|
|
61
63
|
|
62
64
|
|
65
|
+
<p align="center">
|
66
|
+
<a href="LICENSE">
|
67
|
+
<img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT License">
|
68
|
+
</a>
|
69
|
+
<a href="https://pypi.org/project/fabricatio/">
|
70
|
+
<img src="https://img.shields.io/pypi/pyversions/fabricatio" alt="Python Versions">
|
71
|
+
</a>
|
72
|
+
<a href="https://pypi.org/project/fabricatio/">
|
73
|
+
<img src="https://img.shields.io/pypi/v/fabricatio" alt="PyPI Version">
|
74
|
+
</a>
|
75
|
+
<a href="https://deepwiki.com/Whth/fabricatio">
|
76
|
+
<img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki">
|
77
|
+
</a>
|
78
|
+
<a href="https://pepy.tech/projects/fabricatio">
|
79
|
+
<img src="https://static.pepy.tech/badge/fabricatio/week" alt="PyPI Downloads (Week)">
|
80
|
+
</a>
|
81
|
+
<a href="https://pepy.tech/projects/fabricatio">
|
82
|
+
<img src="https://static.pepy.tech/badge/fabricatio" alt="PyPI Downloads">
|
83
|
+
</a>
|
84
|
+
<a href="https://github.com/PyO3/pyo3">
|
85
|
+
<img src="https://img.shields.io/badge/bindings-pyo3-green" alt="Bindings: PyO3">
|
86
|
+
</a>
|
87
|
+
<a href="https://github.com/BerriAI/litellm">
|
88
|
+
<img src="https://img.shields.io/badge/Powered%20by-LiteLLM-blue" alt="Powered by LiteLLM">
|
89
|
+
</a>
|
90
|
+
<a href="https://github.com/astral-sh/uv">
|
91
|
+
<img src="https://img.shields.io/badge/built%20with-uv%20%2B%20maturin-orange" alt="Build Tool: uv + maturin">
|
92
|
+
</a>
|
93
|
+
|
94
|
+
</p>
|
95
|
+
|
96
|
+
|
97
|
+
<p align="center">
|
98
|
+
|
99
|
+
<a href="https://fabricatio.readthedocs.io/en/latest/?badge=fabricatio">
|
100
|
+
<img src="https://readthedocs.org/projects/fabricatio/badge/?version=latest" alt="Documentation Status">
|
101
|
+
</a>
|
102
|
+
<a href="https://github.com/Whth/fabricatio/actions/workflows/build-package.yaml">
|
103
|
+
<img src="https://github.com/Whth/fabricatio/actions/workflows/build-package.yaml/badge.svg" alt="Build Package">
|
104
|
+
</a>
|
105
|
+
<a href="https://github.com/Whth/fabricatio/actions/workflows/ruff.yaml">
|
106
|
+
<img src="https://github.com/Whth/fabricatio/actions/workflows/ruff.yaml/badge.svg" alt="Ruff Lint">
|
107
|
+
</a>
|
108
|
+
<a href="https://github.com/Whth/fabricatio/actions/workflows/tests.yaml">
|
109
|
+
<img src="https://github.com/Whth/fabricatio/actions/workflows/tests.yaml/badge.svg" alt="Tests">
|
110
|
+
</a>
|
111
|
+
<a href="https://coveralls.io/github/Whth/fabricatio?branch=master">
|
112
|
+
<img src="https://coveralls.io/repos/github/Whth/fabricatio/badge.svg?branch=master" alt="Coverage Status">
|
113
|
+
</a>
|
114
|
+
<a href="https://github.com/Whth/fabricatio/issues">
|
115
|
+
<img src="https://img.shields.io/github/issues/Whth/fabricatio" alt="GitHub Issues">
|
116
|
+
</a>
|
117
|
+
<a href="https://github.com/Whth/fabricatio/pulls">
|
118
|
+
<img src="https://img.shields.io/github/issues-pr/Whth/fabricatio" alt="GitHub Pull Requests">
|
119
|
+
</a>
|
120
|
+
<a href="https://github.com/Whth/fabricatio/stargazers">
|
121
|
+
<img src="https://img.shields.io/github/stars/Whth/fabricatio" alt="GitHub Stars">
|
122
|
+
</a>
|
123
|
+
</p>
|
124
|
+
|
125
|
+
|
126
|
+
|
63
127
|
|
64
|
-
[](LICENSE)
|
65
|
-
[](https://pypi.org/project/fabricatio/)
|
66
|
-
[](https://pypi.org/project/fabricatio/)
|
67
|
-
[](https://deepwiki.com/Whth/fabricatio)
|
68
|
-
[](https://pepy.tech/projects/fabricatio)
|
69
|
-
[](https://pepy.tech/projects/fabricatio)
|
70
|
-
[](https://github.com/PyO3/pyo3)
|
71
|
-
[](https://github.com/BerriAI/litellm)
|
72
|
-
[](https://github.com/astral-sh/uv)
|
73
|
-
[](https://fabricatio.readthedocs.io/en/latest/?badge=fabricatio)
|
74
|
-
[](https://github.com/Whth/fabricatio/actions/workflows/build-package.yaml)
|
75
|
-
[](https://github.com/Whth/fabricatio/actions/workflows/ruff.yaml)
|
76
|
-
[](https://github.com/Whth/fabricatio/actions/workflows/tests.yaml)
|
77
|
-
[](https://coveralls.io/github/Whth/fabricatio?branch=master)
|
78
|
-

|
79
|
-

|
80
|
-

|
81
128
|
---
|
82
129
|
|
83
130
|
## Overview
|
@@ -0,0 +1,12 @@
|
|
1
|
+
fabricatio-0.10.1.data/scripts/tdown,sha256=CIKdmdxJjUHGAtIp8rxshQaJ6qGl9J9COSo121b7dZI,5141600
|
2
|
+
fabricatio-0.10.1.dist-info/METADATA,sha256=T1h8q1Qys4pK9HSmKY80QwNufg14sPeXBdG7fdkU21w,8382
|
3
|
+
fabricatio-0.10.1.dist-info/WHEEL,sha256=jLp2duqf8HdGR38ANSTZasShrLQst0e8KGzZrz_xSn8,108
|
4
|
+
fabricatio-0.10.1.dist-info/licenses/LICENSE,sha256=yDZaTLnOi03bi3Dk6f5IjhLUc5old2yOsihHWU0z-i0,1067
|
5
|
+
fabricatio/__init__.py,sha256=4a_7gabZhl9dzonBxcF-8peCGTLNxYJSDfInf1VhRsY,568
|
6
|
+
fabricatio/actions/__init__.py,sha256=4xR1wiPq2HPnVABXy6R3wOxcg9LZKD7g-h9IdTcNKvY,2106
|
7
|
+
fabricatio/capabilities/__init__.py,sha256=aDi5idkxe2TttrdxZsTJrzbdeQz5aN_C7YIg8FtOwZE,2558
|
8
|
+
fabricatio/models/__init__.py,sha256=-T9QeEjg-Qyz-BofvLdpCDvd0ut9k6H0r25sIHMqDCI,1517
|
9
|
+
fabricatio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
+
fabricatio/rust.cpython-313-x86_64-linux-gnu.so,sha256=4kduWXSodBN5uAmtKkNyjml2U5RbrreSSE4_pxxqGQA,513304
|
11
|
+
fabricatio/workflows/__init__.py,sha256=sr-0tgpNPdN5t2pDQa-gp-KUE7K0QDtjP9QGvWYLZ9A,305
|
12
|
+
fabricatio-0.10.1.dist-info/RECORD,,
|
@@ -1,12 +0,0 @@
|
|
1
|
-
fabricatio-0.9.5.dev3.data/scripts/tdown,sha256=uf4WNpcPS3VUOH0oaHsbMoiXjDl8R3qKecz9Op0etug,5117240
|
2
|
-
fabricatio-0.9.5.dev3.dist-info/METADATA,sha256=N5RjbQJk32YfGflNdc71s10GKidipP84h8UPRqhqtoE,7517
|
3
|
-
fabricatio-0.9.5.dev3.dist-info/WHEEL,sha256=jLp2duqf8HdGR38ANSTZasShrLQst0e8KGzZrz_xSn8,108
|
4
|
-
fabricatio-0.9.5.dev3.dist-info/licenses/LICENSE,sha256=yDZaTLnOi03bi3Dk6f5IjhLUc5old2yOsihHWU0z-i0,1067
|
5
|
-
fabricatio/__init__.py,sha256=4a_7gabZhl9dzonBxcF-8peCGTLNxYJSDfInf1VhRsY,568
|
6
|
-
fabricatio/actions/__init__.py,sha256=4xR1wiPq2HPnVABXy6R3wOxcg9LZKD7g-h9IdTcNKvY,2106
|
7
|
-
fabricatio/capabilities/__init__.py,sha256=_OA0cO2z1B2U_4Y7vSETf8_o1WJH5W-zy4yzUpGonMk,2562
|
8
|
-
fabricatio/models/__init__.py,sha256=-T9QeEjg-Qyz-BofvLdpCDvd0ut9k6H0r25sIHMqDCI,1517
|
9
|
-
fabricatio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
-
fabricatio/rust.cpython-313-x86_64-linux-gnu.so,sha256=2i1HisYE5TesyPeTz6-YoBeqJ0yoMuVe2tck_nCD8so,513304
|
11
|
-
fabricatio/workflows/__init__.py,sha256=sr-0tgpNPdN5t2pDQa-gp-KUE7K0QDtjP9QGvWYLZ9A,305
|
12
|
-
fabricatio-0.9.5.dev3.dist-info/RECORD,,
|
File without changes
|
File without changes
|