fabricatio 0.3.15.dev5__cp312-cp312-win_amd64.whl → 0.4.5.dev0__cp312-cp312-win_amd64.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/__init__.py +7 -8
- fabricatio/actions/__init__.py +69 -1
- fabricatio/capabilities/__init__.py +63 -1
- fabricatio/models/__init__.py +51 -0
- fabricatio/rust.cp312-win_amd64.pyd +0 -0
- fabricatio/toolboxes/__init__.py +2 -1
- fabricatio/toolboxes/arithmetic.py +1 -1
- fabricatio/toolboxes/fs.py +2 -2
- fabricatio/workflows/__init__.py +9 -0
- fabricatio-0.4.5.dev0.data/scripts/tdown.exe +0 -0
- {fabricatio-0.3.15.dev5.dist-info → fabricatio-0.4.5.dev0.dist-info}/METADATA +58 -27
- fabricatio-0.4.5.dev0.dist-info/RECORD +15 -0
- fabricatio/actions/article.py +0 -415
- fabricatio/actions/article_rag.py +0 -407
- fabricatio/actions/fs.py +0 -25
- fabricatio/actions/output.py +0 -247
- fabricatio/actions/rag.py +0 -96
- fabricatio/actions/rules.py +0 -83
- fabricatio/capabilities/advanced_judge.py +0 -20
- fabricatio/capabilities/advanced_rag.py +0 -61
- fabricatio/capabilities/censor.py +0 -105
- fabricatio/capabilities/check.py +0 -212
- fabricatio/capabilities/correct.py +0 -228
- fabricatio/capabilities/extract.py +0 -74
- fabricatio/capabilities/propose.py +0 -65
- fabricatio/capabilities/rag.py +0 -264
- fabricatio/capabilities/rating.py +0 -404
- fabricatio/capabilities/review.py +0 -114
- fabricatio/capabilities/task.py +0 -113
- fabricatio/decorators.py +0 -253
- fabricatio/emitter.py +0 -177
- fabricatio/fs/__init__.py +0 -35
- fabricatio/fs/curd.py +0 -153
- fabricatio/fs/readers.py +0 -61
- fabricatio/journal.py +0 -12
- fabricatio/models/action.py +0 -263
- fabricatio/models/adv_kwargs_types.py +0 -63
- fabricatio/models/extra/__init__.py +0 -1
- fabricatio/models/extra/advanced_judge.py +0 -32
- fabricatio/models/extra/aricle_rag.py +0 -286
- fabricatio/models/extra/article_base.py +0 -488
- fabricatio/models/extra/article_essence.py +0 -98
- fabricatio/models/extra/article_main.py +0 -285
- fabricatio/models/extra/article_outline.py +0 -45
- fabricatio/models/extra/article_proposal.py +0 -52
- fabricatio/models/extra/patches.py +0 -20
- fabricatio/models/extra/problem.py +0 -165
- fabricatio/models/extra/rag.py +0 -98
- fabricatio/models/extra/rule.py +0 -51
- fabricatio/models/generic.py +0 -904
- fabricatio/models/kwargs_types.py +0 -121
- fabricatio/models/role.py +0 -156
- fabricatio/models/task.py +0 -310
- fabricatio/models/tool.py +0 -328
- fabricatio/models/usages.py +0 -791
- fabricatio/parser.py +0 -114
- fabricatio/rust.pyi +0 -846
- fabricatio/utils.py +0 -156
- fabricatio/workflows/articles.py +0 -24
- fabricatio/workflows/rag.py +0 -11
- fabricatio-0.3.15.dev5.data/scripts/tdown.exe +0 -0
- fabricatio-0.3.15.dev5.data/scripts/ttm.exe +0 -0
- fabricatio-0.3.15.dev5.dist-info/RECORD +0 -63
- {fabricatio-0.3.15.dev5.dist-info → fabricatio-0.4.5.dev0.dist-info}/WHEEL +0 -0
- {fabricatio-0.3.15.dev5.dist-info → fabricatio-0.4.5.dev0.dist-info}/licenses/LICENSE +0 -0
fabricatio/__init__.py
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
"""Fabricatio is a Python library for building llm app using event-based agent structure."""
|
2
2
|
|
3
|
-
from
|
4
|
-
from
|
5
|
-
from
|
6
|
-
from
|
7
|
-
from
|
8
|
-
from
|
9
|
-
from
|
3
|
+
from fabricatio_core import fs, parser, utils
|
4
|
+
from fabricatio_core.journal import logger
|
5
|
+
from fabricatio_core.models.action import Action, WorkFlow
|
6
|
+
from fabricatio_core.models.role import Role
|
7
|
+
from fabricatio_core.models.task import Task
|
8
|
+
from fabricatio_core.models.tool import ToolBox
|
9
|
+
from fabricatio_core.rust import CONFIG, TEMPLATE_MANAGER, Event
|
10
10
|
|
11
11
|
__all__ = [
|
12
12
|
"CONFIG",
|
@@ -18,7 +18,6 @@ __all__ = [
|
|
18
18
|
"ToolBox",
|
19
19
|
"WorkFlow",
|
20
20
|
"actions",
|
21
|
-
"capabilities",
|
22
21
|
"fs",
|
23
22
|
"logger",
|
24
23
|
"models",
|
fabricatio/actions/__init__.py
CHANGED
@@ -1 +1,69 @@
|
|
1
|
-
"""
|
1
|
+
"""This is the initialization file for the 'fabricatio.actions' package.
|
2
|
+
|
3
|
+
It imports various action classes from different modules based on the availability of certain packages.
|
4
|
+
The imported classes are then added to the '__all__' list, making them accessible when the package is imported.
|
5
|
+
"""
|
6
|
+
|
7
|
+
from importlib.util import find_spec
|
8
|
+
|
9
|
+
__all__ = []
|
10
|
+
|
11
|
+
if find_spec("fabricatio_typst"):
|
12
|
+
from fabricatio_typst.actions.article import (
|
13
|
+
ExtractArticleEssence,
|
14
|
+
ExtractOutlineFromRaw,
|
15
|
+
FixArticleEssence,
|
16
|
+
GenerateArticle,
|
17
|
+
GenerateArticleProposal,
|
18
|
+
GenerateInitialOutline,
|
19
|
+
WriteChapterSummary,
|
20
|
+
WriteResearchContentSummary,
|
21
|
+
)
|
22
|
+
|
23
|
+
__all__ += [
|
24
|
+
"ExtractArticleEssence",
|
25
|
+
"ExtractOutlineFromRaw",
|
26
|
+
"FixArticleEssence",
|
27
|
+
"GenerateArticle",
|
28
|
+
"GenerateArticleProposal",
|
29
|
+
"GenerateInitialOutline",
|
30
|
+
"WriteChapterSummary",
|
31
|
+
"WriteResearchContentSummary",
|
32
|
+
]
|
33
|
+
|
34
|
+
if find_spec("fabricatio_rag"):
|
35
|
+
from fabricatio_typst.actions.article_rag import (
|
36
|
+
ArticleConsultRAG,
|
37
|
+
ChunkArticle,
|
38
|
+
TweakArticleRAG,
|
39
|
+
WriteArticleContentRAG,
|
40
|
+
)
|
41
|
+
|
42
|
+
__all__ += ["ArticleConsultRAG", "ChunkArticle", "TweakArticleRAG", "WriteArticleContentRAG"]
|
43
|
+
if find_spec("fabricatio_rag"):
|
44
|
+
from fabricatio_rag.actions.rag import InjectToDB, RAGTalk
|
45
|
+
|
46
|
+
__all__ += ["InjectToDB", "RAGTalk"]
|
47
|
+
|
48
|
+
if find_spec("fabricatio_actions"):
|
49
|
+
from fabricatio_actions.actions.fs import ReadText
|
50
|
+
from fabricatio_actions.actions.output import (
|
51
|
+
DumpFinalizedOutput,
|
52
|
+
Forward,
|
53
|
+
GatherAsList,
|
54
|
+
PersistentAll,
|
55
|
+
RenderedDump,
|
56
|
+
RetrieveFromLatest,
|
57
|
+
RetrieveFromPersistent,
|
58
|
+
)
|
59
|
+
|
60
|
+
__all__ += [
|
61
|
+
"DumpFinalizedOutput",
|
62
|
+
"Forward",
|
63
|
+
"GatherAsList",
|
64
|
+
"PersistentAll",
|
65
|
+
"ReadText",
|
66
|
+
"RenderedDump",
|
67
|
+
"RetrieveFromLatest",
|
68
|
+
"RetrieveFromPersistent",
|
69
|
+
]
|
@@ -1 +1,63 @@
|
|
1
|
-
"""A module containing
|
1
|
+
"""A module containing all the capabilities of the Fabricatio framework."""
|
2
|
+
|
3
|
+
from importlib.util import find_spec
|
4
|
+
|
5
|
+
__all__ = []
|
6
|
+
|
7
|
+
if find_spec("fabricatio_capabilities"):
|
8
|
+
from fabricatio_capabilities.capabilities.extract import Extract
|
9
|
+
from fabricatio_capabilities.capabilities.propose import Propose
|
10
|
+
from fabricatio_capabilities.capabilities.rating import Rating
|
11
|
+
from fabricatio_capabilities.capabilities.task import ProposeTask
|
12
|
+
|
13
|
+
__all__ += ["Extract", "Propose", "ProposeTask", "Rating"]
|
14
|
+
|
15
|
+
if find_spec("fabricatio_rag"):
|
16
|
+
from fabricatio_rag.capabilities.rag import RAG
|
17
|
+
|
18
|
+
__all__ += ["RAG"]
|
19
|
+
if find_spec("fabricatio_write"):
|
20
|
+
from fabricatio_typst.capabilities.citation_rag import CitationRAG
|
21
|
+
|
22
|
+
__all__ += [
|
23
|
+
"CitationRAG",
|
24
|
+
]
|
25
|
+
|
26
|
+
if find_spec("fabricatio_rule"):
|
27
|
+
from fabricatio_rule.capabilities.censor import Censor
|
28
|
+
from fabricatio_rule.capabilities.check import Check
|
29
|
+
|
30
|
+
__all__ += ["Censor", "Check"]
|
31
|
+
|
32
|
+
if find_spec("fabricatio_improve"):
|
33
|
+
from fabricatio_improve.capabilities.correct import Correct
|
34
|
+
from fabricatio_improve.capabilities.review import Review
|
35
|
+
|
36
|
+
__all__ += [
|
37
|
+
"Correct",
|
38
|
+
"Review",
|
39
|
+
]
|
40
|
+
|
41
|
+
if find_spec("fabricatio_judge"):
|
42
|
+
from fabricatio_judge.capabilities.advanced_judge import AdvancedJudge
|
43
|
+
|
44
|
+
__all__ += ["AdvancedJudge"]
|
45
|
+
|
46
|
+
if find_spec("fabricatio_digest"):
|
47
|
+
from fabricatio_digest.capabilities.digest import Digest
|
48
|
+
|
49
|
+
__all__ += ["Digest"]
|
50
|
+
|
51
|
+
if find_spec("fabricatio_anki"):
|
52
|
+
from fabricatio_anki.capabilities.generate_deck import GenerateDeck
|
53
|
+
|
54
|
+
__all__ += ["GenerateDeck"]
|
55
|
+
|
56
|
+
if find_spec("fabricatio_tagging"):
|
57
|
+
from fabricatio_tagging.capabilities.tagging import Tagging
|
58
|
+
|
59
|
+
__all__ += ["Tagging"]
|
60
|
+
if find_spec("fabricatio_question"):
|
61
|
+
from fabricatio_question.capabilities.questioning import Questioning
|
62
|
+
|
63
|
+
__all__ += ["Questioning"]
|
@@ -0,0 +1,51 @@
|
|
1
|
+
"""A module for the usage of the fabricatio package."""
|
2
|
+
|
3
|
+
from importlib.util import find_spec
|
4
|
+
|
5
|
+
from fabricatio_core.models.usages import EmbeddingUsage, LLMUsage, ToolBoxUsage
|
6
|
+
|
7
|
+
__all__ = [
|
8
|
+
"EmbeddingUsage",
|
9
|
+
"LLMUsage",
|
10
|
+
"ToolBoxUsage",
|
11
|
+
]
|
12
|
+
|
13
|
+
if find_spec("fabricatio_typst"):
|
14
|
+
from fabricatio_typst.models.article_essence import ArticleEssence
|
15
|
+
from fabricatio_typst.models.article_main import Article
|
16
|
+
from fabricatio_typst.models.article_outline import ArticleOutline
|
17
|
+
from fabricatio_typst.models.article_proposal import ArticleProposal
|
18
|
+
|
19
|
+
__all__ += [
|
20
|
+
"Article",
|
21
|
+
"ArticleEssence",
|
22
|
+
"ArticleOutline",
|
23
|
+
"ArticleProposal",
|
24
|
+
]
|
25
|
+
|
26
|
+
if find_spec("fabricatio_typst"):
|
27
|
+
from fabricatio_typst.models.aricle_rag import ArticleChunk
|
28
|
+
|
29
|
+
__all__ += ["ArticleChunk"]
|
30
|
+
|
31
|
+
if find_spec("fabricatio_judge"):
|
32
|
+
from fabricatio_judge.models.advanced_judge import JudgeMent
|
33
|
+
|
34
|
+
__all__ += ["JudgeMent"]
|
35
|
+
|
36
|
+
if find_spec("fabricatio_digest"):
|
37
|
+
from fabricatio_digest.models.tasklist import TaskList
|
38
|
+
|
39
|
+
__all__ += ["TaskList"]
|
40
|
+
|
41
|
+
|
42
|
+
if find_spec("fabricatio_anki"):
|
43
|
+
from fabricatio_anki.models.deck import Deck, Model
|
44
|
+
from fabricatio_anki.models.template import Template
|
45
|
+
|
46
|
+
__all__ += ["Deck", "Model", "Template"]
|
47
|
+
|
48
|
+
if find_spec("fabricatio_question"):
|
49
|
+
from fabricatio_question.models.questions import SelectionQuestion
|
50
|
+
|
51
|
+
__all__ += ["SelectionQuestion"]
|
Binary file
|
fabricatio/toolboxes/__init__.py
CHANGED
fabricatio/toolboxes/fs.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"""File system tool box."""
|
2
2
|
|
3
|
-
from
|
3
|
+
from fabricatio_core.fs import (
|
4
4
|
absolute_path,
|
5
5
|
copy_file,
|
6
6
|
create_directory,
|
@@ -13,7 +13,7 @@ from fabricatio.fs import (
|
|
13
13
|
safe_text_read,
|
14
14
|
tree,
|
15
15
|
)
|
16
|
-
from
|
16
|
+
from fabricatio_core.models.tool import ToolBox
|
17
17
|
|
18
18
|
fs_toolbox = (
|
19
19
|
ToolBox(name="FsToolBox", description="A toolbox for basic file system operations.")
|
fabricatio/workflows/__init__.py
CHANGED
@@ -1 +1,10 @@
|
|
1
1
|
"""A module containing some builtin workflows."""
|
2
|
+
|
3
|
+
__all__ = []
|
4
|
+
|
5
|
+
from importlib.util import find_spec
|
6
|
+
|
7
|
+
if find_spec("fabricatio_typst") and find_spec("fabricatio_actions"):
|
8
|
+
from fabricatio_typst.workflows.articles import WriteOutlineCorrectedWorkFlow
|
9
|
+
|
10
|
+
__all__ += ["WriteOutlineCorrectedWorkFlow"]
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fabricatio
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.4.5.dev0
|
4
4
|
Classifier: License :: OSI Approved :: MIT License
|
5
5
|
Classifier: Programming Language :: Rust
|
6
6
|
Classifier: Programming Language :: Python :: 3.12
|
@@ -9,26 +9,35 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
9
9
|
Classifier: Framework :: AsyncIO
|
10
10
|
Classifier: Framework :: Pydantic :: 2
|
11
11
|
Classifier: Typing :: Typed
|
12
|
-
Requires-Dist:
|
13
|
-
Requires-Dist:
|
14
|
-
Requires-Dist:
|
15
|
-
Requires-Dist:
|
16
|
-
Requires-Dist:
|
17
|
-
Requires-Dist:
|
18
|
-
Requires-Dist:
|
19
|
-
Requires-Dist:
|
20
|
-
Requires-Dist: rich>=13.9.4
|
21
|
-
Requires-Dist: ujson>=5.10.0
|
22
|
-
Requires-Dist: fabricatio[ftd,qa,rag,cli] ; extra == 'full'
|
23
|
-
Requires-Dist: pymilvus>=2.5.4 ; extra == 'rag'
|
24
|
-
Requires-Dist: questionary>=2.1.0 ; extra == 'qa'
|
25
|
-
Requires-Dist: magika>=0.6.1 ; extra == 'ftd'
|
12
|
+
Requires-Dist: fabricatio-core
|
13
|
+
Requires-Dist: fabricatio[rag,cli,typst,rule,judge,capabilities,actions,improve,digest,memory,anki,question,tagging,improve,rag] ; extra == 'full'
|
14
|
+
Requires-Dist: fabricatio-anki ; extra == 'anki'
|
15
|
+
Requires-Dist: fabricatio-memory ; extra == 'memory'
|
16
|
+
Requires-Dist: fabricatio-digest ; extra == 'digest'
|
17
|
+
Requires-Dist: fabricatio-rag ; extra == 'rag'
|
18
|
+
Requires-Dist: fabricatio-judge ; extra == 'judge'
|
19
|
+
Requires-Dist: fabricatio-rule ; extra == 'rule'
|
26
20
|
Requires-Dist: typer-slim[standard]>=0.15.2 ; extra == 'cli'
|
21
|
+
Requires-Dist: fabricatio-typst ; extra == 'typst'
|
22
|
+
Requires-Dist: fabricatio-improve ; extra == 'improve'
|
23
|
+
Requires-Dist: fabricatio-capabilities ; extra == 'capabilities'
|
24
|
+
Requires-Dist: fabricatio-actions ; extra == 'actions'
|
25
|
+
Requires-Dist: fabricatio-question ; extra == 'question'
|
26
|
+
Requires-Dist: fabricatio-tagging ; extra == 'tagging'
|
27
27
|
Provides-Extra: full
|
28
|
+
Provides-Extra: anki
|
29
|
+
Provides-Extra: memory
|
30
|
+
Provides-Extra: digest
|
28
31
|
Provides-Extra: rag
|
29
|
-
Provides-Extra:
|
30
|
-
Provides-Extra:
|
32
|
+
Provides-Extra: judge
|
33
|
+
Provides-Extra: rule
|
31
34
|
Provides-Extra: cli
|
35
|
+
Provides-Extra: typst
|
36
|
+
Provides-Extra: improve
|
37
|
+
Provides-Extra: capabilities
|
38
|
+
Provides-Extra: actions
|
39
|
+
Provides-Extra: question
|
40
|
+
Provides-Extra: tagging
|
32
41
|
License-File: LICENSE
|
33
42
|
Summary: A LLM multi-agent framework.
|
34
43
|
Keywords: ai,agents,multi-agent,llm,pyo3
|
@@ -39,9 +48,32 @@ Project-URL: Homepage, https://github.com/Whth/fabricatio
|
|
39
48
|
Project-URL: Repository, https://github.com/Whth/fabricatio
|
40
49
|
Project-URL: Issues, https://github.com/Whth/fabricatio/issues
|
41
50
|
|
42
|
-
|
43
|
-
|
44
|
-
|
51
|
+
<p style="text-align: center;">
|
52
|
+
<picture>
|
53
|
+
<img src="./assets/band.png" width="80%" alt="Fabricatio Logo" loading="lazy">
|
54
|
+
</picture>
|
55
|
+
</p>
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
[](LICENSE)
|
61
|
+
[](https://pypi.org/project/fabricatio/)
|
62
|
+
[](https://pypi.org/project/fabricatio/)
|
63
|
+
[](https://deepwiki.com/Whth/fabricatio)
|
64
|
+
[](https://pepy.tech/projects/fabricatio)
|
65
|
+
[](https://pepy.tech/projects/fabricatio)
|
66
|
+
[](https://github.com/PyO3/pyo3)
|
67
|
+
[](https://github.com/BerriAI/litellm)
|
68
|
+
[](https://github.com/astral-sh/uv)
|
69
|
+
[](https://fabricatio.readthedocs.io/en/latest/?badge=fabricatio)
|
70
|
+
[](https://github.com/Whth/fabricatio/actions/workflows/build-package.yaml)
|
71
|
+
[](https://github.com/Whth/fabricatio/actions/workflows/ruff.yaml)
|
72
|
+
[](https://github.com/Whth/fabricatio/actions/workflows/tests.yaml)
|
73
|
+

|
74
|
+

|
75
|
+

|
76
|
+
---
|
45
77
|
|
46
78
|
## Overview
|
47
79
|
|
@@ -66,8 +98,11 @@ pip install uv
|
|
66
98
|
git clone https://github.com/Whth/fabricatio.git
|
67
99
|
cd fabricatio
|
68
100
|
|
69
|
-
# Install the package in development mode with
|
70
|
-
|
101
|
+
# Install the package in development mode with uvx
|
102
|
+
uvx --with-editable . maturin develop --uv -r
|
103
|
+
|
104
|
+
# Or, with make
|
105
|
+
make dev
|
71
106
|
```
|
72
107
|
|
73
108
|
### Building Distribution
|
@@ -154,17 +189,13 @@ max_tokens = 8192
|
|
154
189
|
```
|
155
190
|
2. **Install Dependencies**:
|
156
191
|
```bash
|
157
|
-
|
192
|
+
make dev
|
158
193
|
```
|
159
194
|
3. **Run Tests**:
|
160
195
|
```bash
|
161
196
|
make test
|
162
197
|
```
|
163
198
|
|
164
|
-
## TODO
|
165
|
-
|
166
|
-
- Add an element based format strategy
|
167
|
-
|
168
199
|
## Contributing
|
169
200
|
|
170
201
|
Contributions are welcome! Follow these steps:
|
@@ -0,0 +1,15 @@
|
|
1
|
+
fabricatio-0.4.5.dev0.data/scripts/tdown.exe,sha256=zIYvNabCx0rTg0WBgW2hUm1khgCFa0Amb-OZfLGsIbE,3799040
|
2
|
+
fabricatio-0.4.5.dev0.dist-info/METADATA,sha256=86-324aP0POxZ__pZSpEEilYPaNPMTsU1W-sDWoYsD4,7557
|
3
|
+
fabricatio-0.4.5.dev0.dist-info/WHEEL,sha256=YpU2aDuTyBIvwRZn8idqScP-vkQ8DUGkCILtYmMfnFY,96
|
4
|
+
fabricatio-0.4.5.dev0.dist-info/licenses/LICENSE,sha256=do7J7EiCGbq0QPbMAL_FqLYufXpHnCnXBOuqVPwSV8Y,1088
|
5
|
+
fabricatio/__init__.py,sha256=t2-WdrUOcaDZbGr9PxMvxrOUXpIyXHcNeD1Rzkm4ffY,722
|
6
|
+
fabricatio/actions/__init__.py,sha256=wdgHUFWQtWfvsxAcIFNxtLEw2HVyS0U4cw9x1q5NuhA,2059
|
7
|
+
fabricatio/capabilities/__init__.py,sha256=RY2TVzujQJcJCDJHJEMabVB1AVQBokKnCfdNM_ZnMwo,1929
|
8
|
+
fabricatio/models/__init__.py,sha256=Yx3ZLK8NdrdlLu335iE2QR8E9yIh-wNe_hhgElY7TxQ,1472
|
9
|
+
fabricatio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
+
fabricatio/rust.cp312-win_amd64.pyd,sha256=Qnqv6gbG7b3OE--oqKLTrbS0ajFkAWSdOuMzqmuwQk8,175616
|
11
|
+
fabricatio/toolboxes/__init__.py,sha256=fxi4KOg-nmX_cmJCA6tG1j1hav-O95KelO2gCVwdLSY,402
|
12
|
+
fabricatio/toolboxes/arithmetic.py,sha256=tcaHLzGQvnlbxG57IANpZ2vTRO5QpSt366RckBlBIOg,1374
|
13
|
+
fabricatio/toolboxes/fs.py,sha256=fpSfU6YkCVJzSXsbT9WT3m80tH8i6mhLWnu9u7yhV-w,746
|
14
|
+
fabricatio/workflows/__init__.py,sha256=Twr7FaI7scUhz0LOlPktB6lf_k3VdcHNabCjpTsw938,315
|
15
|
+
fabricatio-0.4.5.dev0.dist-info/RECORD,,
|