fabricatio 0.2.7.dev4__cp312-cp312-win_amd64.whl → 0.2.8__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 +4 -11
- fabricatio/actions/article.py +226 -92
- fabricatio/actions/article_rag.py +86 -21
- fabricatio/actions/output.py +71 -3
- fabricatio/actions/rag.py +3 -3
- fabricatio/actions/rules.py +39 -0
- fabricatio/capabilities/advanced_judge.py +23 -0
- fabricatio/capabilities/censor.py +90 -0
- fabricatio/capabilities/check.py +195 -0
- fabricatio/capabilities/correct.py +160 -96
- fabricatio/capabilities/propose.py +20 -4
- fabricatio/capabilities/rag.py +5 -4
- fabricatio/capabilities/rating.py +68 -23
- fabricatio/capabilities/review.py +21 -190
- fabricatio/capabilities/task.py +9 -10
- fabricatio/config.py +11 -3
- fabricatio/fs/curd.py +4 -0
- fabricatio/models/action.py +24 -10
- fabricatio/models/adv_kwargs_types.py +25 -0
- fabricatio/models/extra/__init__.py +1 -0
- fabricatio/models/extra/advanced_judge.py +32 -0
- fabricatio/models/extra/article_base.py +324 -89
- fabricatio/models/extra/article_essence.py +49 -176
- fabricatio/models/extra/article_main.py +48 -127
- fabricatio/models/extra/article_outline.py +12 -152
- fabricatio/models/extra/article_proposal.py +29 -13
- fabricatio/models/extra/patches.py +7 -0
- fabricatio/models/extra/problem.py +153 -0
- fabricatio/models/extra/rule.py +65 -0
- fabricatio/models/generic.py +360 -88
- fabricatio/models/kwargs_types.py +23 -17
- fabricatio/models/role.py +4 -1
- fabricatio/models/task.py +1 -1
- fabricatio/models/tool.py +149 -14
- fabricatio/models/usages.py +61 -47
- fabricatio/models/utils.py +0 -46
- fabricatio/parser.py +7 -8
- fabricatio/rust.cp312-win_amd64.pyd +0 -0
- fabricatio/{_rust.pyi → rust.pyi} +50 -0
- fabricatio/{_rust_instances.py → rust_instances.py} +1 -1
- fabricatio/utils.py +54 -0
- fabricatio-0.2.8.data/scripts/tdown.exe +0 -0
- {fabricatio-0.2.7.dev4.dist-info → fabricatio-0.2.8.dist-info}/METADATA +2 -1
- fabricatio-0.2.8.dist-info/RECORD +58 -0
- fabricatio/_rust.cp312-win_amd64.pyd +0 -0
- fabricatio-0.2.7.dev4.data/scripts/tdown.exe +0 -0
- fabricatio-0.2.7.dev4.dist-info/RECORD +0 -47
- {fabricatio-0.2.7.dev4.dist-info → fabricatio-0.2.8.dist-info}/WHEEL +0 -0
- {fabricatio-0.2.7.dev4.dist-info → fabricatio-0.2.8.dist-info}/licenses/LICENSE +0 -0
fabricatio/models/utils.py
CHANGED
@@ -4,7 +4,6 @@ from enum import Enum
|
|
4
4
|
from typing import Any, Dict, List, Literal, Optional, Self
|
5
5
|
|
6
6
|
from pydantic import BaseModel, ConfigDict, Field
|
7
|
-
from questionary import text
|
8
7
|
|
9
8
|
|
10
9
|
class Message(BaseModel):
|
@@ -147,48 +146,3 @@ class TaskStatus(Enum):
|
|
147
146
|
Cancelled = "cancelled"
|
148
147
|
|
149
148
|
|
150
|
-
async def ask_edit(
|
151
|
-
text_seq: List[str],
|
152
|
-
) -> List[str]:
|
153
|
-
"""Asks the user to edit a list of texts.
|
154
|
-
|
155
|
-
Args:
|
156
|
-
text_seq (List[str]): A list of texts to be edited.
|
157
|
-
|
158
|
-
Returns:
|
159
|
-
List[str]: A list of edited texts.
|
160
|
-
If the user does not edit a text, it will not be included in the returned list.
|
161
|
-
"""
|
162
|
-
res = []
|
163
|
-
for i, t in enumerate(text_seq):
|
164
|
-
edited = await text(f"[{i}] ", default=t).ask_async()
|
165
|
-
if edited:
|
166
|
-
res.append(edited)
|
167
|
-
return res
|
168
|
-
|
169
|
-
|
170
|
-
def override_kwargs[T](kwargs: Dict[str, T], **overrides) -> Dict[str, T]:
|
171
|
-
"""Override the values in kwargs with the provided overrides."""
|
172
|
-
kwargs.update({k: v for k, v in overrides.items() if v is not None})
|
173
|
-
return kwargs
|
174
|
-
|
175
|
-
|
176
|
-
def fallback_kwargs[T](kwargs: Dict[str, T], **overrides) -> Dict[str, T]:
|
177
|
-
"""Fallback the values in kwargs with the provided overrides."""
|
178
|
-
kwargs.update({k: v for k, v in overrides.items() if k not in kwargs})
|
179
|
-
return kwargs
|
180
|
-
|
181
|
-
|
182
|
-
def ok[T](val: Optional[T], msg: str = "Value is None") -> T:
|
183
|
-
"""Check if a value is None and raise a ValueError with the provided message if it is.
|
184
|
-
|
185
|
-
Args:
|
186
|
-
val: The value to check.
|
187
|
-
msg: The message to include in the ValueError if val is None.
|
188
|
-
|
189
|
-
Returns:
|
190
|
-
T: The value if it is not None.
|
191
|
-
"""
|
192
|
-
if val is None:
|
193
|
-
raise ValueError(msg)
|
194
|
-
return val
|
fabricatio/parser.py
CHANGED
@@ -45,14 +45,14 @@ class Capture(BaseModel):
|
|
45
45
|
str | List[str]: The fixed text with the same type as input.
|
46
46
|
"""
|
47
47
|
match self.capture_type:
|
48
|
-
case "json":
|
48
|
+
case "json" if configs.general.use_json_repair:
|
49
|
+
logger.debug("Applying json repair to text.")
|
49
50
|
if isinstance(text, str):
|
50
51
|
return repair_json(text, ensure_ascii=False)
|
51
52
|
return [repair_json(item, ensure_ascii=False) for item in text]
|
52
53
|
case _:
|
53
54
|
return text
|
54
55
|
|
55
|
-
|
56
56
|
def capture(self, text: str) -> Tuple[str, ...] | str | None:
|
57
57
|
"""Capture the first occurrence of the pattern in the given text.
|
58
58
|
|
@@ -63,11 +63,10 @@ class Capture(BaseModel):
|
|
63
63
|
str | None: The captured text if the pattern is found, otherwise None.
|
64
64
|
|
65
65
|
"""
|
66
|
-
match
|
67
|
-
|
68
|
-
logger.debug(f"Capture Failed: \n{text}")
|
66
|
+
if (match :=self._compiled.match(text) or self._compiled.search(text) ) is None:
|
67
|
+
logger.debug(f"Capture Failed {type(text)}: \n{text}")
|
69
68
|
return None
|
70
|
-
groups = self.fix(match.groups())
|
69
|
+
groups = self.fix(match.groups())
|
71
70
|
if self.target_groups:
|
72
71
|
cap = tuple(groups[g - 1] for g in self.target_groups)
|
73
72
|
logger.debug(f"Captured text: {'\n\n'.join(cap)}")
|
@@ -134,7 +133,7 @@ class Capture(BaseModel):
|
|
134
133
|
Returns:
|
135
134
|
Self: The instance of the class with the captured code block.
|
136
135
|
"""
|
137
|
-
return cls(pattern=f"```{language}
|
136
|
+
return cls(pattern=f"```{language}(.*?)```", capture_type=language)
|
138
137
|
|
139
138
|
@classmethod
|
140
139
|
def capture_generic_block(cls, language: str) -> Self:
|
@@ -143,7 +142,7 @@ class Capture(BaseModel):
|
|
143
142
|
Returns:
|
144
143
|
Self: The instance of the class with the captured code block.
|
145
144
|
"""
|
146
|
-
return cls(pattern=f"--- Start of {language}
|
145
|
+
return cls(pattern=f"--- Start of {language} ---(.*?)--- end of {language} ---", capture_type=language)
|
147
146
|
|
148
147
|
|
149
148
|
JsonCapture = Capture.capture_code_block("json")
|
Binary file
|
@@ -122,3 +122,53 @@ class BibManager:
|
|
122
122
|
Returns:
|
123
123
|
List of all titles in the bibliography
|
124
124
|
"""
|
125
|
+
|
126
|
+
def get_author_by_key(self, key: str) -> Optional[List[str]]:
|
127
|
+
"""Retrieve authors by citation key.
|
128
|
+
|
129
|
+
Args:
|
130
|
+
key: Citation key
|
131
|
+
|
132
|
+
Returns:
|
133
|
+
List of authors if found, None otherwise
|
134
|
+
"""
|
135
|
+
|
136
|
+
def get_year_by_key(self, key: str) -> Optional[int]:
|
137
|
+
"""Retrieve the publication year by citation key.
|
138
|
+
|
139
|
+
Args:
|
140
|
+
key: Citation key
|
141
|
+
|
142
|
+
Returns:
|
143
|
+
Publication year if found, None otherwise
|
144
|
+
"""
|
145
|
+
|
146
|
+
def get_abstract_by_key(self, key: str) -> Optional[str]:
|
147
|
+
"""Retrieve the abstract by citation key.
|
148
|
+
|
149
|
+
Args:
|
150
|
+
key: Citation key
|
151
|
+
|
152
|
+
Returns:
|
153
|
+
Abstract if found, None otherwise
|
154
|
+
"""
|
155
|
+
def get_title_by_key(self, key: str) -> Optional[str]:
|
156
|
+
"""Retrieve the title by citation key.
|
157
|
+
|
158
|
+
Args:
|
159
|
+
key: Citation key
|
160
|
+
|
161
|
+
Returns:
|
162
|
+
Title if found, None otherwise
|
163
|
+
"""
|
164
|
+
|
165
|
+
def get_field_by_key(self, key: str, field: str)-> Optional[str]:
|
166
|
+
"""Retrieve a specific field by citation key.
|
167
|
+
|
168
|
+
Args:
|
169
|
+
key: Citation key
|
170
|
+
field: Field name
|
171
|
+
|
172
|
+
Returns:
|
173
|
+
Field value if found, None otherwise
|
174
|
+
"""
|
fabricatio/utils.py
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
"""A collection of utility functions for the fabricatio package."""
|
2
|
+
|
3
|
+
from typing import Any, Dict, List, Optional
|
4
|
+
|
5
|
+
from questionary import text
|
6
|
+
|
7
|
+
|
8
|
+
async def ask_edit(
|
9
|
+
text_seq: List[str],
|
10
|
+
) -> List[str]:
|
11
|
+
"""Asks the user to edit a list of texts.
|
12
|
+
|
13
|
+
Args:
|
14
|
+
text_seq (List[str]): A list of texts to be edited.
|
15
|
+
|
16
|
+
Returns:
|
17
|
+
List[str]: A list of edited texts.
|
18
|
+
If the user does not edit a text, it will not be included in the returned list.
|
19
|
+
"""
|
20
|
+
res = []
|
21
|
+
for i, t in enumerate(text_seq):
|
22
|
+
edited = await text(f"[{i}] ", default=t).ask_async()
|
23
|
+
if edited:
|
24
|
+
res.append(edited)
|
25
|
+
return res
|
26
|
+
|
27
|
+
|
28
|
+
def override_kwargs(kwargs: Dict[str,Any], **overrides) -> Dict[str, Any]:
|
29
|
+
"""Override the values in kwargs with the provided overrides."""
|
30
|
+
new_kwargs = kwargs.copy()
|
31
|
+
new_kwargs.update({k: v for k, v in overrides.items() if v is not None})
|
32
|
+
return new_kwargs
|
33
|
+
|
34
|
+
|
35
|
+
def fallback_kwargs(kwargs: Dict[str, Any], **overrides) -> Dict[str, Any]:
|
36
|
+
"""Fallback the values in kwargs with the provided overrides."""
|
37
|
+
new_kwargs = kwargs.copy()
|
38
|
+
new_kwargs.update({k: v for k, v in overrides.items() if k not in new_kwargs and v is not None})
|
39
|
+
return new_kwargs
|
40
|
+
|
41
|
+
|
42
|
+
def ok[T](val: Optional[T], msg: str = "Value is None") -> T:
|
43
|
+
"""Check if a value is None and raise a ValueError with the provided message if it is.
|
44
|
+
|
45
|
+
Args:
|
46
|
+
val: The value to check.
|
47
|
+
msg: The message to include in the ValueError if val is None.
|
48
|
+
|
49
|
+
Returns:
|
50
|
+
T: The value if it is not None.
|
51
|
+
"""
|
52
|
+
if val is None:
|
53
|
+
raise ValueError(msg)
|
54
|
+
return val
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fabricatio
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.8
|
4
4
|
Classifier: License :: OSI Approved :: MIT License
|
5
5
|
Classifier: Programming Language :: Rust
|
6
6
|
Classifier: Programming Language :: Python :: 3.12
|
@@ -23,6 +23,7 @@ Requires-Dist: pymitter>=1.0.0
|
|
23
23
|
Requires-Dist: questionary>=2.1.0
|
24
24
|
Requires-Dist: regex>=2024.11.6
|
25
25
|
Requires-Dist: rich>=13.9.4
|
26
|
+
Requires-Dist: rtoml>=0.12.0
|
26
27
|
Requires-Dist: pymilvus>=2.5.4 ; extra == 'rag'
|
27
28
|
Requires-Dist: fabricatio[calc,plot,rag] ; extra == 'full'
|
28
29
|
Requires-Dist: sympy>=1.13.3 ; extra == 'calc'
|
@@ -0,0 +1,58 @@
|
|
1
|
+
fabricatio-0.2.8.dist-info/METADATA,sha256=yBDi9snnmLAVJLmPOYgsLQxFf45Qw8xvzIbWUB9-vAw,5283
|
2
|
+
fabricatio-0.2.8.dist-info/WHEEL,sha256=jABKVkLC9kJr8mi_er5jOqpiQUjARSLXDUIIxDqsS50,96
|
3
|
+
fabricatio-0.2.8.dist-info/licenses/LICENSE,sha256=do7J7EiCGbq0QPbMAL_FqLYufXpHnCnXBOuqVPwSV8Y,1088
|
4
|
+
fabricatio/actions/article.py,sha256=03AgmFwLCBi75NorALlyoSUVF3T0z2Srb_Md4yrNo5g,12786
|
5
|
+
fabricatio/actions/article_rag.py,sha256=dkfskNqntVPi81Xm_NFdTQM8v2nR9FJIexzkK9rg-NU,4352
|
6
|
+
fabricatio/actions/output.py,sha256=-FfTzXEHIb_zOT-j4T4b5ND96zHLDEGdjlmmPviIbiM,3754
|
7
|
+
fabricatio/actions/rag.py,sha256=wb3vt-gS6fDHYJ57Yfu_OR0kpewT9vMqwtXsqXd42Kg,2735
|
8
|
+
fabricatio/actions/rules.py,sha256=pA6ADNgpPWBp2a3FTEuF--0INHg0QJxc0kfxF1zMDXQ,1541
|
9
|
+
fabricatio/capabilities/advanced_judge.py,sha256=selB0Gwf1F4gGJlwBiRo6gI4KOUROgh3WnzO3mZFEls,706
|
10
|
+
fabricatio/capabilities/censor.py,sha256=J-YgwnDus3vKDpeFENhGvUSxvpC8FnhhnWJe1RffcqI,3869
|
11
|
+
fabricatio/capabilities/check.py,sha256=m_6byoanImgeoNLHy9eu3_u5TVbcoA8jxM0XyKhE8I4,8176
|
12
|
+
fabricatio/capabilities/correct.py,sha256=I9RWmFjwXEjbYzIgtyFbqc0RvTpHeMHdGT9tuKHwCtY,9177
|
13
|
+
fabricatio/capabilities/propose.py,sha256=hkBeSlmcTdfYWT-ph6nlbtHXBozi_JXqXlWcnBy3W78,2007
|
14
|
+
fabricatio/capabilities/rag.py,sha256=ABW5onY4KjiynSb2577aMec7xXoWzkkd9SkNLpy7YpQ,17720
|
15
|
+
fabricatio/capabilities/rating.py,sha256=1EqI6_hzwZduy0rs_yjfqq2a8xlpcFVQCHspBnJbuTY,17010
|
16
|
+
fabricatio/capabilities/review.py,sha256=-EMZe0ADFPT6fPGmra16UPjJC1M3rAs6dPFdTZ88Fgg,5060
|
17
|
+
fabricatio/capabilities/task.py,sha256=WjFdQICsQxXSrONcTXMGZYpbMFImwVEUKqWd6F1fBTo,4415
|
18
|
+
fabricatio/config.py,sha256=aA-wirVVfjRuk1AXj-l9UFQFaDEBtV3YnzQIwCPE_G0,17503
|
19
|
+
fabricatio/core.py,sha256=VQ_JKgUGIy2gZ8xsTBZCdr_IP7wC5aPg0_bsOmjQ588,6458
|
20
|
+
fabricatio/decorators.py,sha256=C0Gi7wcXC-0sWITqsSv3JdBGcgVJOlRvOt0FfO0aUsA,7554
|
21
|
+
fabricatio/fs/curd.py,sha256=p8y0LGKgVDk-CWOlm37E6wg7RK6RCD6denKo-VsW28c,4763
|
22
|
+
fabricatio/fs/readers.py,sha256=EZKN_AZdrp8DggJECP53QHw3uHeSDf-AwCAA_V7fNKU,1202
|
23
|
+
fabricatio/fs/__init__.py,sha256=PCf0s_9KDjVfNw7AfPoJzGt3jMq4gJOfbcT4pb0D0ZY,588
|
24
|
+
fabricatio/journal.py,sha256=stnEP88aUBA_GmU9gfTF2EZI8FS2OyMLGaMSTgK4QgA,476
|
25
|
+
fabricatio/models/action.py,sha256=C0PnZ5ycLcqcQ5s1h4KcLJXc1ZZmxYRfCQvz2DuSAOo,9229
|
26
|
+
fabricatio/models/adv_kwargs_types.py,sha256=dcYMLn6xcnWLZTLTBdtpgUZWi-VBeub721GzHRZFT1g,860
|
27
|
+
fabricatio/models/events.py,sha256=QvlnS8FEELg6KNabcJMeh2GV_y0ZBzKOPphcteKYWYU,4183
|
28
|
+
fabricatio/models/extra/advanced_judge.py,sha256=mi3KiB8FUuSYICzXPXKwVhCyRE1GL3gHLkwuc-4mh3c,999
|
29
|
+
fabricatio/models/extra/article_base.py,sha256=1Fg3iWbod1TCU3nIJK9mOq_8K3oGBtSW03VUwi2I5tg,17058
|
30
|
+
fabricatio/models/extra/article_essence.py,sha256=xd6j-PDqjhrMjgUmyfk6HqkyMLu-sS9feUo0sZ3QABY,2825
|
31
|
+
fabricatio/models/extra/article_main.py,sha256=0Xj54pRxUw5Iaj9npYmHKT-ZMvEIBlZ6G1ysNJRgceM,8225
|
32
|
+
fabricatio/models/extra/article_outline.py,sha256=jFbVgiwlo7rnwCGS6ToVgeMUOoRe99Edgbx95THR6z8,1450
|
33
|
+
fabricatio/models/extra/article_proposal.py,sha256=L2kPvH1XCCQSNcI1KQU3ULGq7C24Y88ssugX43LgbsE,2043
|
34
|
+
fabricatio/models/extra/patches.py,sha256=_yyyDbaQ8wkj6QP-NU-3I74HehFgwD889vD0SlCjynU,303
|
35
|
+
fabricatio/models/extra/problem.py,sha256=KwYkc7kjoEG7cwj9C8sWLoZgtBqJVuxlU_7KkvtSgO0,5828
|
36
|
+
fabricatio/models/extra/rule.py,sha256=XOs9IJGrB9HSEPvA08SsmEyRF7LHSBP-vUMePFIhwdk,3549
|
37
|
+
fabricatio/models/extra/__init__.py,sha256=XlYnS_2B9nhLhtQkjE7rvvfPmAAtXVdNi9bSDAR-Ge8,54
|
38
|
+
fabricatio/models/generic.py,sha256=0jZ4rIjpDb3glmxuIuEjNgpAnSX0NGkcNHQlzDFRJhM,26283
|
39
|
+
fabricatio/models/kwargs_types.py,sha256=sMDA85SoC1AOJ5k6qC8qUiUv0Ne0_5ThU9FZITRNen4,5673
|
40
|
+
fabricatio/models/role.py,sha256=-CRcj5_M3_ciLPzwiNn92grBmwoSLQ-n4koVZiCNTBM,2953
|
41
|
+
fabricatio/models/task.py,sha256=YXvO3upJkTqMQjPgUGfp0bIiSyZzek2f4IagHdMW5Ik,10491
|
42
|
+
fabricatio/models/tool.py,sha256=jQ51g4lwTPfsMF1nbreDJtBczbxIHoXcPuLSOqHliq8,12506
|
43
|
+
fabricatio/models/usages.py,sha256=atMrA1MlPthpKYjV5lIrvJwe-BFomOQXQAWAS85YFqw,32319
|
44
|
+
fabricatio/models/utils.py,sha256=Ac5g-8ic6q_w7dhNuh-iiofpL1sqOACxbjPPTljP2LY,4417
|
45
|
+
fabricatio/parser.py,sha256=UOSvXigEXK-eXsr3m3b7glOhbBWs4kDJTeTNyuqA9ic,6315
|
46
|
+
fabricatio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
|
+
fabricatio/rust.pyi,sha256=_N8Jw1DMOFAaoibSQolxkKZ07nCfJao7Z9qkojHtLy0,5104
|
48
|
+
fabricatio/rust_instances.py,sha256=Byeo8KHW_dJiXujJq7YPGDLBX5bHNDYbBc4sY3uubVY,313
|
49
|
+
fabricatio/toolboxes/arithmetic.py,sha256=WLqhY-Pikv11Y_0SGajwZx3WhsLNpHKf9drzAqOf_nY,1369
|
50
|
+
fabricatio/toolboxes/fs.py,sha256=l4L1CVxJmjw9Ld2XUpIlWfV0_Fu_2Og6d3E13I-S4aE,736
|
51
|
+
fabricatio/toolboxes/__init__.py,sha256=KBJi5OG_pExscdlM7Bnt_UF43j4I3Lv6G71kPVu4KQU,395
|
52
|
+
fabricatio/utils.py,sha256=QJR00IuclL2nNTSfpTNBRYJmNjc_DNXGtrYWjatWpq8,1681
|
53
|
+
fabricatio/workflows/articles.py,sha256=G5HGRr-DHuYuEcfhFdFAuDvTTJ9aSU_UQ2yYXEjTMtM,1047
|
54
|
+
fabricatio/workflows/rag.py,sha256=-YYp2tlE9Vtfgpg6ROpu6QVO8j8yVSPa6yDzlN3qVxs,520
|
55
|
+
fabricatio/__init__.py,sha256=Rmvq2VgdS2u68vnOi2i5RbeWbAwrJDbk8D8D883PJWE,1022
|
56
|
+
fabricatio/rust.cp312-win_amd64.pyd,sha256=QklmeEKkj1gg-Rstn6_TXOGNskz64NQ3ItxjlQoDDpA,1892352
|
57
|
+
fabricatio-0.2.8.data/scripts/tdown.exe,sha256=gg39lB38OIyEUMWGu5MWDOr9b-8_Vhtzd0EtksiKGEw,3402240
|
58
|
+
fabricatio-0.2.8.dist-info/RECORD,,
|
Binary file
|
Binary file
|
@@ -1,47 +0,0 @@
|
|
1
|
-
fabricatio-0.2.7.dev4.dist-info/METADATA,sha256=DshHoi8eegFUNjltQNJgm0SkKSGCLPYJj-oaBBlth9o,5259
|
2
|
-
fabricatio-0.2.7.dev4.dist-info/WHEEL,sha256=jABKVkLC9kJr8mi_er5jOqpiQUjARSLXDUIIxDqsS50,96
|
3
|
-
fabricatio-0.2.7.dev4.dist-info/licenses/LICENSE,sha256=do7J7EiCGbq0QPbMAL_FqLYufXpHnCnXBOuqVPwSV8Y,1088
|
4
|
-
fabricatio/actions/article.py,sha256=AgxNKIRLXF9T-TdrhLPE8NWmT8QZXz1QvFnouvuoRBc,7684
|
5
|
-
fabricatio/actions/article_rag.py,sha256=PiOFxI6VTmLXm3BK-01g_KH1mTE9uOtnA-CwUjt16AU,1456
|
6
|
-
fabricatio/actions/output.py,sha256=K7xsBH8MjXRH6JOy3ZO94KCQzX2jNrwPPK_rRXVkS0E,1161
|
7
|
-
fabricatio/actions/rag.py,sha256=QBdzEM8MloM_ahx5pTBZAETm9_631lTe_0ih_he_Iuo,2759
|
8
|
-
fabricatio/capabilities/correct.py,sha256=8GOU2VBPUakjG-r59SqsCgCD0QHX-l__IynCLO-ib8Q,6482
|
9
|
-
fabricatio/capabilities/propose.py,sha256=y3kge5g6bb8HYuV8e9h4MdqOMTlsfAIZpqE_cagWPTY,1593
|
10
|
-
fabricatio/capabilities/rag.py,sha256=XVvfH6rcog-moj1WCgwtR-l0-NdbFR6-fMQFLG7_asY,17690
|
11
|
-
fabricatio/capabilities/rating.py,sha256=yEPqL5_DqVMj_AH9cMvKsHdMnSbvm8dN6PaKHLsJUPQ,14904
|
12
|
-
fabricatio/capabilities/review.py,sha256=uc4WV9Xu-4rXAXZ-k-32HXAgm4WMLbDRfiZdRP7Nepg,11384
|
13
|
-
fabricatio/capabilities/task.py,sha256=vtS0YOe639vN8iTrkP2WK0AJVCr5N_JAaJuvRGyY2Fg,4639
|
14
|
-
fabricatio/config.py,sha256=hUv5XMzOkEw8cQjsVHTpPPix52IKwmxjBsZM6Px3xZI,16915
|
15
|
-
fabricatio/core.py,sha256=VQ_JKgUGIy2gZ8xsTBZCdr_IP7wC5aPg0_bsOmjQ588,6458
|
16
|
-
fabricatio/decorators.py,sha256=C0Gi7wcXC-0sWITqsSv3JdBGcgVJOlRvOt0FfO0aUsA,7554
|
17
|
-
fabricatio/fs/curd.py,sha256=N6l2MncjrFfnXBRtteRouXp5Rjy8EAKC_i29_G-zz98,4618
|
18
|
-
fabricatio/fs/readers.py,sha256=EZKN_AZdrp8DggJECP53QHw3uHeSDf-AwCAA_V7fNKU,1202
|
19
|
-
fabricatio/fs/__init__.py,sha256=PCf0s_9KDjVfNw7AfPoJzGt3jMq4gJOfbcT4pb0D0ZY,588
|
20
|
-
fabricatio/journal.py,sha256=stnEP88aUBA_GmU9gfTF2EZI8FS2OyMLGaMSTgK4QgA,476
|
21
|
-
fabricatio/models/action.py,sha256=UlflniS__MMrUXglu_U3PDFAtKEjVsKEix17AT9oP3M,8769
|
22
|
-
fabricatio/models/events.py,sha256=QvlnS8FEELg6KNabcJMeh2GV_y0ZBzKOPphcteKYWYU,4183
|
23
|
-
fabricatio/models/extra/article_base.py,sha256=9zkS89G3L9moc0iYNq9D7DCcv0K52jRQWjM1MUK__dg,8449
|
24
|
-
fabricatio/models/extra/article_essence.py,sha256=DUESuK4CGgkRvIMoJCv4l8MNp5MawRYoNOtLCrFRPXY,9229
|
25
|
-
fabricatio/models/extra/article_main.py,sha256=yhgZvHWAgL-BJ-eolaXTqBzyWq340GfJucoTY_2CPzs,11342
|
26
|
-
fabricatio/models/extra/article_outline.py,sha256=83hFbCaUDuXn9K_0qcCXQOQ1NBmK-7305ChfKvhNXns,7404
|
27
|
-
fabricatio/models/extra/article_proposal.py,sha256=p0NPzqg9x6t65DZqdF52Z1P0JwP6kwo2_eP-NsXgifU,1720
|
28
|
-
fabricatio/models/generic.py,sha256=GVjcDnzwjKElCZoEVciS7X8SSPjqEp_6M2fLiyAkwNo,17644
|
29
|
-
fabricatio/models/kwargs_types.py,sha256=chJ-rHaeBVRUPuORHuGR3DdNxxTUrotz0eflPEh4l4w,5474
|
30
|
-
fabricatio/models/role.py,sha256=mmQbJ6GKr2Gx3wtjEz8d-vYoXs09ffcEkT_eCXaDd3E,2782
|
31
|
-
fabricatio/models/task.py,sha256=8NaR7ojQWyM740EDTqt9stwHKdrD6axCRpLKo0QzS-I,10492
|
32
|
-
fabricatio/models/tool.py,sha256=kD0eB7OxO9geZOxO6JIKvCBeG-KOpRAkfRZqK_WGfW4,7105
|
33
|
-
fabricatio/models/usages.py,sha256=BSqTENSva8Flga3bPBfwuc1nHo5Z_29oYzar99NbjLM,31566
|
34
|
-
fabricatio/models/utils.py,sha256=yjxPZ6N7QGpGwkI_Vb28Ud3EhkdlB-tyfGRHAZMcGxs,5872
|
35
|
-
fabricatio/parser.py,sha256=9Jzw-yV6uKbFvf6sPna-XHdziVGVBZWvPctgX_6ODL8,6251
|
36
|
-
fabricatio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
fabricatio/toolboxes/arithmetic.py,sha256=WLqhY-Pikv11Y_0SGajwZx3WhsLNpHKf9drzAqOf_nY,1369
|
38
|
-
fabricatio/toolboxes/fs.py,sha256=l4L1CVxJmjw9Ld2XUpIlWfV0_Fu_2Og6d3E13I-S4aE,736
|
39
|
-
fabricatio/toolboxes/__init__.py,sha256=KBJi5OG_pExscdlM7Bnt_UF43j4I3Lv6G71kPVu4KQU,395
|
40
|
-
fabricatio/workflows/articles.py,sha256=G5HGRr-DHuYuEcfhFdFAuDvTTJ9aSU_UQ2yYXEjTMtM,1047
|
41
|
-
fabricatio/workflows/rag.py,sha256=-YYp2tlE9Vtfgpg6ROpu6QVO8j8yVSPa6yDzlN3qVxs,520
|
42
|
-
fabricatio/_rust.pyi,sha256=dGTGV7viu3YAGl1cRKIWrdHPc1hlwk3_hbaDaswxdVo,3831
|
43
|
-
fabricatio/_rust_instances.py,sha256=2GwF8aVfYNemRI2feBzH1CZfBGno-XJJE5imJokGEYw,314
|
44
|
-
fabricatio/__init__.py,sha256=SzBYsRhZeL77jLtfJEjmoHOSwHwUGyvMATX6xfndLDM,1135
|
45
|
-
fabricatio/_rust.cp312-win_amd64.pyd,sha256=opsv_4PpUw06LsJqoKuuTr8aQ3NdAMxB1Ep2RrQqaLc,1835520
|
46
|
-
fabricatio-0.2.7.dev4.data/scripts/tdown.exe,sha256=eEr8wBSNDWdntRBBly7YQr1DnA0ru8NAgAmfMPw7SdU,3402240
|
47
|
-
fabricatio-0.2.7.dev4.dist-info/RECORD,,
|
File without changes
|
File without changes
|