fabricatio 0.2.1.dev0__cp312-cp312-win_amd64.whl → 0.2.1.dev2__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/_rust.cp312-win_amd64.pyd +0 -0
- fabricatio/config.py +7 -0
- fabricatio/fs/readers.py +21 -2
- fabricatio/models/advanced.py +126 -10
- fabricatio/models/generic.py +11 -3
- fabricatio/models/kwargs_types.py +7 -2
- fabricatio/models/usages.py +75 -19
- {fabricatio-0.2.1.dev0.data → fabricatio-0.2.1.dev2.data}/scripts/tdown.exe +0 -0
- {fabricatio-0.2.1.dev0.dist-info → fabricatio-0.2.1.dev2.dist-info}/METADATA +1 -1
- {fabricatio-0.2.1.dev0.dist-info → fabricatio-0.2.1.dev2.dist-info}/RECORD +12 -12
- {fabricatio-0.2.1.dev0.dist-info → fabricatio-0.2.1.dev2.dist-info}/WHEEL +0 -0
- {fabricatio-0.2.1.dev0.dist-info → fabricatio-0.2.1.dev2.dist-info}/licenses/LICENSE +0 -0
Binary file
|
fabricatio/config.py
CHANGED
@@ -157,6 +157,12 @@ class TemplateConfig(BaseModel):
|
|
157
157
|
task_briefing_template: str = Field(default="task_briefing")
|
158
158
|
"""The name of the task briefing template which will be used to brief a task."""
|
159
159
|
|
160
|
+
rate_fine_grind_template: str = Field(default="rate_fine_grind")
|
161
|
+
"""The name of the rate fine grind template which will be used to rate fine grind."""
|
162
|
+
|
163
|
+
draft_rating_manual_template: str = Field(default="draft_rating_manual")
|
164
|
+
"""The name of the draft rating manual template which will be used to draft rating manual."""
|
165
|
+
|
160
166
|
|
161
167
|
class MagikaConfig(BaseModel):
|
162
168
|
"""Magika configuration class."""
|
@@ -208,6 +214,7 @@ class Settings(BaseSettings):
|
|
208
214
|
toml_file=["fabricatio.toml", rf"{ROAMING_DIR}\fabricatio.toml"],
|
209
215
|
env_file=[".env", ".envrc"],
|
210
216
|
use_attribute_docstrings=True,
|
217
|
+
extra="ignore",
|
211
218
|
)
|
212
219
|
|
213
220
|
llm: LLMConfig = Field(default_factory=LLMConfig)
|
fabricatio/fs/readers.py
CHANGED
@@ -1,24 +1,43 @@
|
|
1
1
|
"""Filesystem readers for Fabricatio."""
|
2
2
|
|
3
3
|
from pathlib import Path
|
4
|
+
from typing import Dict
|
4
5
|
|
5
6
|
from magika import Magika
|
7
|
+
from orjson import orjson
|
6
8
|
|
7
9
|
from fabricatio.config import configs
|
8
10
|
|
9
11
|
magika = Magika(model_dir=configs.magika.model_dir)
|
10
12
|
|
11
13
|
|
12
|
-
def safe_text_read(path: Path) -> str:
|
14
|
+
def safe_text_read(path: Path | str) -> str:
|
13
15
|
"""Safely read the text from a file.
|
14
16
|
|
15
17
|
Args:
|
16
|
-
path (Path): The path to the file.
|
18
|
+
path (Path|str): The path to the file.
|
17
19
|
|
18
20
|
Returns:
|
19
21
|
str: The text from the file.
|
20
22
|
"""
|
23
|
+
path = Path(path)
|
21
24
|
try:
|
22
25
|
return path.read_text(encoding="utf-8")
|
23
26
|
except (UnicodeDecodeError, IsADirectoryError, FileNotFoundError):
|
24
27
|
return ""
|
28
|
+
|
29
|
+
|
30
|
+
def safe_json_read(path: Path | str) -> Dict:
|
31
|
+
"""Safely read the JSON from a file.
|
32
|
+
|
33
|
+
Args:
|
34
|
+
path (Path|str): The path to the file.
|
35
|
+
|
36
|
+
Returns:
|
37
|
+
dict: The JSON from the file.
|
38
|
+
"""
|
39
|
+
path = Path(path)
|
40
|
+
try:
|
41
|
+
return orjson.loads(path.read_text(encoding="utf-8"))
|
42
|
+
except (orjson.JSONDecodeError, IsADirectoryError, FileNotFoundError):
|
43
|
+
return {}
|
fabricatio/models/advanced.py
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
"""A module for advanced models and functionalities."""
|
2
2
|
|
3
3
|
from types import CodeType
|
4
|
-
from typing import Any, Dict, List, Optional, Tuple, Unpack
|
4
|
+
from typing import Any, Dict, List, Optional, Set, Tuple, Unpack
|
5
5
|
|
6
6
|
import orjson
|
7
7
|
from fabricatio._rust_instances import template_manager
|
8
8
|
from fabricatio.config import configs
|
9
9
|
from fabricatio.models.generic import WithBriefing
|
10
|
-
from fabricatio.models.kwargs_types import
|
10
|
+
from fabricatio.models.kwargs_types import ChooseKwargs, ValidateKwargs
|
11
11
|
from fabricatio.models.task import Task
|
12
12
|
from fabricatio.models.tool import Tool, ToolExecutor
|
13
13
|
from fabricatio.models.usages import LLMUsage, ToolBoxUsage
|
14
14
|
from fabricatio.parser import JsonCapture, PythonCapture
|
15
15
|
from loguru import logger
|
16
|
-
from pydantic import
|
16
|
+
from pydantic import ValidationError
|
17
17
|
|
18
18
|
|
19
19
|
class ProposeTask(WithBriefing, LLMUsage):
|
@@ -22,14 +22,12 @@ class ProposeTask(WithBriefing, LLMUsage):
|
|
22
22
|
async def propose[T](
|
23
23
|
self,
|
24
24
|
prompt: str,
|
25
|
-
|
26
|
-
**kwargs: Unpack[LLMKwargs],
|
25
|
+
**kwargs: Unpack[ValidateKwargs],
|
27
26
|
) -> Task[T]:
|
28
27
|
"""Asynchronously proposes a task based on a given prompt and parameters.
|
29
28
|
|
30
29
|
Parameters:
|
31
30
|
prompt: The prompt text for proposing a task, which is a string that must be provided.
|
32
|
-
max_validations: The maximum number of validations allowed, default is 2.
|
33
31
|
**kwargs: The keyword arguments for the LLM (Large Language Model) usage.
|
34
32
|
|
35
33
|
Returns:
|
@@ -55,7 +53,6 @@ class ProposeTask(WithBriefing, LLMUsage):
|
|
55
53
|
question=template_manager.render_template(configs.templates.propose_task_template, template_data),
|
56
54
|
validator=_validate_json,
|
57
55
|
system_message=f"# your personal briefing: \n{self.briefing}",
|
58
|
-
max_validations=max_validations,
|
59
56
|
**kwargs,
|
60
57
|
)
|
61
58
|
|
@@ -68,7 +65,7 @@ class HandleTask(WithBriefing, ToolBoxUsage):
|
|
68
65
|
task: Task,
|
69
66
|
tools: List[Tool],
|
70
67
|
data: Dict[str, Any],
|
71
|
-
**kwargs: Unpack[
|
68
|
+
**kwargs: Unpack[ValidateKwargs],
|
72
69
|
) -> Tuple[CodeType, List[str]]:
|
73
70
|
"""Asynchronously drafts the tool usage code for a task based on a given task object and tools."""
|
74
71
|
logger.info(f"Drafting tool usage code for task: {task.briefing}")
|
@@ -109,12 +106,14 @@ class HandleTask(WithBriefing, ToolBoxUsage):
|
|
109
106
|
self,
|
110
107
|
task: Task,
|
111
108
|
data: Dict[str, Any],
|
112
|
-
|
109
|
+
box_choose_kwargs: Optional[ChooseKwargs] = None,
|
110
|
+
tool_choose_kwargs: Optional[ChooseKwargs] = None,
|
111
|
+
**kwargs: Unpack[ValidateKwargs],
|
113
112
|
) -> Optional[Tuple]:
|
114
113
|
"""Asynchronously handles a task based on a given task object and parameters."""
|
115
114
|
logger.info(f"Handling task: \n{task.briefing}")
|
116
115
|
|
117
|
-
tools = await self.
|
116
|
+
tools = await self.gather_tools_fine_grind(task, box_choose_kwargs, tool_choose_kwargs)
|
118
117
|
logger.info(f"{self.name} have gathered {[t.name for t in tools]}")
|
119
118
|
|
120
119
|
if tools:
|
@@ -126,3 +125,120 @@ class HandleTask(WithBriefing, ToolBoxUsage):
|
|
126
125
|
return tuple(cxt.get(k) for k in to_extract)
|
127
126
|
|
128
127
|
return None
|
128
|
+
|
129
|
+
async def handle(self, task: Task, data: Dict[str, Any], **kwargs: Unpack[ValidateKwargs]) -> Optional[Tuple]:
|
130
|
+
"""Asynchronously handles a task based on a given task object and parameters."""
|
131
|
+
return await self.handle_fin_grind(task, data, **kwargs)
|
132
|
+
|
133
|
+
|
134
|
+
class GiveRating(WithBriefing, LLMUsage):
|
135
|
+
"""A class that provides functionality to rate tasks based on a rating manual and score range."""
|
136
|
+
|
137
|
+
async def rate_fine_grind(
|
138
|
+
self,
|
139
|
+
to_rate: str,
|
140
|
+
rating_manual: Dict[str, str],
|
141
|
+
score_range: Tuple[float, float],
|
142
|
+
**kwargs: Unpack[ValidateKwargs],
|
143
|
+
) -> Dict[str, float]:
|
144
|
+
"""Rates a given task based on a rating manual and score range.
|
145
|
+
|
146
|
+
Args:
|
147
|
+
to_rate: The task to be rated.
|
148
|
+
rating_manual: A dictionary containing the rating criteria.
|
149
|
+
score_range: A tuple representing the valid score range.
|
150
|
+
**kwargs: Additional keyword arguments for the LLM usage.
|
151
|
+
|
152
|
+
Returns:
|
153
|
+
A dictionary with the ratings for each dimension.
|
154
|
+
"""
|
155
|
+
|
156
|
+
def _validator(response: str) -> Dict[str, float] | None:
|
157
|
+
if (
|
158
|
+
(json_data := JsonCapture.convert_with(response, orjson.loads)) is not None
|
159
|
+
and isinstance(json_data, dict)
|
160
|
+
and json_data.keys() == rating_manual.keys()
|
161
|
+
and all(isinstance(v, float) for v in json_data.values())
|
162
|
+
and all(score_range[0] <= v <= score_range[1] for v in json_data.values())
|
163
|
+
):
|
164
|
+
return json_data
|
165
|
+
return None
|
166
|
+
|
167
|
+
return await self.aask_validate(
|
168
|
+
question=(
|
169
|
+
template_manager.render_template(
|
170
|
+
configs.templates.rate_fine_grind_template,
|
171
|
+
{
|
172
|
+
"to_rate": to_rate,
|
173
|
+
"min_score": score_range[0],
|
174
|
+
"max_score": score_range[1],
|
175
|
+
"rating_manual": rating_manual,
|
176
|
+
},
|
177
|
+
)
|
178
|
+
),
|
179
|
+
validator=_validator,
|
180
|
+
system_message=f"# your personal briefing: \n{self.briefing}",
|
181
|
+
**kwargs,
|
182
|
+
)
|
183
|
+
|
184
|
+
async def rate(
|
185
|
+
self,
|
186
|
+
to_rate: str,
|
187
|
+
topic: str,
|
188
|
+
dimensions: Set[str],
|
189
|
+
score_range: Tuple[float, float] = (0.0, 1.0),
|
190
|
+
**kwargs: Unpack[ValidateKwargs],
|
191
|
+
) -> Dict[str, float]:
|
192
|
+
"""Rates a task based on a topic and dimensions. this function will automatically draft a rating manual based on the topic and dimensions.
|
193
|
+
|
194
|
+
Args:
|
195
|
+
to_rate: The task to be rated.
|
196
|
+
topic: The topic related to the task.
|
197
|
+
dimensions: A set of dimensions for rating.
|
198
|
+
score_range: A tuple representing the valid score range
|
199
|
+
**kwargs: Additional keyword arguments for the LLM usage.
|
200
|
+
|
201
|
+
Returns:
|
202
|
+
A dictionary with the ratings for each dimension.
|
203
|
+
"""
|
204
|
+
manual = await self.draft_rating_manual(topic, dimensions, **kwargs)
|
205
|
+
return await self.rate_fine_grind(to_rate, manual, score_range, **kwargs)
|
206
|
+
|
207
|
+
async def draft_rating_manual(
|
208
|
+
self, topic: str, dimensions: Set[str], **kwargs: Unpack[ValidateKwargs]
|
209
|
+
) -> Dict[str, str]:
|
210
|
+
"""Drafts a rating manual based on a topic and dimensions.
|
211
|
+
|
212
|
+
Args:
|
213
|
+
topic: The topic for the rating manual.
|
214
|
+
dimensions: A set of dimensions for the rating manual.
|
215
|
+
**kwargs: Additional keyword arguments for the LLM usage.
|
216
|
+
|
217
|
+
Returns:
|
218
|
+
A dictionary representing the drafted rating manual.
|
219
|
+
"""
|
220
|
+
|
221
|
+
def _validator(response: str) -> Dict[str, str] | None:
|
222
|
+
if (
|
223
|
+
(json_data := JsonCapture.convert_with(response, orjson.loads)) is not None
|
224
|
+
and isinstance(json_data, dict)
|
225
|
+
and json_data.keys() == dimensions
|
226
|
+
and all(isinstance(v, str) for v in json_data.values())
|
227
|
+
):
|
228
|
+
return json_data
|
229
|
+
return None
|
230
|
+
|
231
|
+
return await self.aask_validate(
|
232
|
+
question=(
|
233
|
+
template_manager.render_template(
|
234
|
+
configs.templates.draft_rating_manual_template,
|
235
|
+
{
|
236
|
+
"topic": topic,
|
237
|
+
"dimensions": dimensions,
|
238
|
+
},
|
239
|
+
)
|
240
|
+
),
|
241
|
+
validator=_validator,
|
242
|
+
system_message=f"# your personal briefing: \n{self.briefing}",
|
243
|
+
**kwargs,
|
244
|
+
)
|
fabricatio/models/generic.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
"""This module defines generic classes for models in the Fabricatio library."""
|
2
2
|
|
3
3
|
from pathlib import Path
|
4
|
-
from typing import List, Self
|
4
|
+
from typing import Callable, List, Self
|
5
5
|
|
6
6
|
import orjson
|
7
7
|
from fabricatio._rust import blake3_hash
|
@@ -108,17 +108,25 @@ class WithDependency(Base):
|
|
108
108
|
self.dependencies.clear()
|
109
109
|
return self
|
110
110
|
|
111
|
-
def override_dependencies[P: str | Path](self, dependencies: List[P]) -> Self:
|
111
|
+
def override_dependencies[P: str | Path](self, dependencies: List[P] | P) -> Self:
|
112
112
|
"""Override the file dependencies of the task.
|
113
113
|
|
114
114
|
Args:
|
115
|
-
dependencies (List[str | Path]): The file dependencies to override the task's dependencies.
|
115
|
+
dependencies (List[str | Path] | str | Path): The file dependencies to override the task's dependencies.
|
116
116
|
|
117
117
|
Returns:
|
118
118
|
Self: The current instance of the task.
|
119
119
|
"""
|
120
120
|
return self.clear_dependencies().add_dependency(dependencies)
|
121
121
|
|
122
|
+
def pop_dependence[T](self, idx: int = -1, reader: Callable[[str], T] = safe_text_read) -> T:
|
123
|
+
"""Pop the file dependencies from the task.
|
124
|
+
|
125
|
+
Returns:
|
126
|
+
str: The popped file dependency
|
127
|
+
"""
|
128
|
+
return reader(self.dependencies.pop(idx))
|
129
|
+
|
122
130
|
@property
|
123
131
|
def dependencies_prompt(self) -> str:
|
124
132
|
"""Generate a prompt for the task based on the file dependencies.
|
@@ -18,9 +18,14 @@ class LLMKwargs(TypedDict):
|
|
18
18
|
max_retries: NotRequired[PositiveInt]
|
19
19
|
|
20
20
|
|
21
|
-
class
|
22
|
-
"""A type representing the keyword arguments for the
|
21
|
+
class ValidateKwargs(LLMKwargs):
|
22
|
+
"""A type representing the keyword arguments for the validate method."""
|
23
23
|
|
24
24
|
max_validations: NotRequired[PositiveInt]
|
25
|
+
|
26
|
+
|
27
|
+
class ChooseKwargs(ValidateKwargs):
|
28
|
+
"""A type representing the keyword arguments for the choose method."""
|
29
|
+
|
25
30
|
system_message: NotRequired[str]
|
26
31
|
k: NotRequired[NonNegativeInt]
|
fabricatio/models/usages.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
"""This module contains classes that manage the usage of language models and tools in tasks."""
|
2
2
|
|
3
|
-
from
|
3
|
+
from asyncio import gather
|
4
|
+
from typing import Callable, Dict, Iterable, List, Optional, Self, Set, Union, Unpack, overload
|
4
5
|
|
5
6
|
import asyncstdlib
|
6
7
|
import litellm
|
@@ -130,12 +131,42 @@ class LLMUsage(Base):
|
|
130
131
|
logger.critical(err := f"Unexpected response type: {type(resp)}")
|
131
132
|
raise ValueError(err)
|
132
133
|
|
134
|
+
@overload
|
135
|
+
async def aask(
|
136
|
+
self,
|
137
|
+
question: List[str],
|
138
|
+
system_message: Optional[List[str]] = None,
|
139
|
+
**kwargs: Unpack[LLMKwargs],
|
140
|
+
) -> List[str]: ...
|
141
|
+
@overload
|
133
142
|
async def aask(
|
134
143
|
self,
|
135
144
|
question: str,
|
136
|
-
system_message: str =
|
145
|
+
system_message: Optional[List[str]] = None,
|
146
|
+
**kwargs: Unpack[LLMKwargs],
|
147
|
+
) -> List[str]: ...
|
148
|
+
@overload
|
149
|
+
async def aask(
|
150
|
+
self,
|
151
|
+
question: List[str],
|
152
|
+
system_message: Optional[str] = None,
|
137
153
|
**kwargs: Unpack[LLMKwargs],
|
138
|
-
) -> str:
|
154
|
+
) -> List[str]: ...
|
155
|
+
|
156
|
+
@overload
|
157
|
+
async def aask(
|
158
|
+
self,
|
159
|
+
question: str,
|
160
|
+
system_message: Optional[str] = None,
|
161
|
+
**kwargs: Unpack[LLMKwargs],
|
162
|
+
) -> str: ...
|
163
|
+
|
164
|
+
async def aask(
|
165
|
+
self,
|
166
|
+
question: str | List[str],
|
167
|
+
system_message: Optional[str | List[str]] = None,
|
168
|
+
**kwargs: Unpack[LLMKwargs],
|
169
|
+
) -> str | List[str]:
|
139
170
|
"""Asynchronously asks the language model a question and returns the response content.
|
140
171
|
|
141
172
|
Args:
|
@@ -146,16 +177,39 @@ class LLMUsage(Base):
|
|
146
177
|
Returns:
|
147
178
|
str: The content of the model's response message.
|
148
179
|
"""
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
180
|
+
system_message = system_message or ""
|
181
|
+
match (isinstance(question, list), isinstance(system_message, list)):
|
182
|
+
case (True, True):
|
183
|
+
res = await gather(
|
184
|
+
*[
|
185
|
+
self.ainvoke(n=1, question=q, system_message=sm, **kwargs)
|
186
|
+
for q, sm in zip(question, system_message, strict=True)
|
187
|
+
]
|
188
|
+
)
|
189
|
+
return [r.pop().message.content for r in res]
|
190
|
+
case (True, False):
|
191
|
+
res = await gather(
|
192
|
+
*[self.ainvoke(n=1, question=q, system_message=system_message, **kwargs) for q in question]
|
156
193
|
)
|
157
|
-
|
158
|
-
|
194
|
+
return [r.pop().message.content for r in res]
|
195
|
+
case (False, True):
|
196
|
+
res = await gather(
|
197
|
+
*[self.ainvoke(n=1, question=question, system_message=sm, **kwargs) for sm in system_message]
|
198
|
+
)
|
199
|
+
return [r.pop().message.content for r in res]
|
200
|
+
case (False, False):
|
201
|
+
return (
|
202
|
+
(
|
203
|
+
await self.ainvoke(
|
204
|
+
n=1,
|
205
|
+
question=question,
|
206
|
+
system_message=system_message,
|
207
|
+
**kwargs,
|
208
|
+
)
|
209
|
+
).pop()
|
210
|
+
).message.content
|
211
|
+
case _:
|
212
|
+
raise RuntimeError("Should not reach here.")
|
159
213
|
|
160
214
|
async def aask_validate[T](
|
161
215
|
self,
|
@@ -278,13 +332,15 @@ class LLMUsage(Base):
|
|
278
332
|
Raises:
|
279
333
|
ValueError: If validation fails after maximum attempts or if no valid selection is made.
|
280
334
|
"""
|
281
|
-
return
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
335
|
+
return (
|
336
|
+
await self.achoose(
|
337
|
+
instruction=instruction,
|
338
|
+
choices=choices,
|
339
|
+
k=1,
|
340
|
+
max_validations=max_validations,
|
341
|
+
system_message=system_message,
|
342
|
+
**kwargs,
|
343
|
+
)
|
288
344
|
)[0]
|
289
345
|
|
290
346
|
async def ajudge(
|
Binary file
|
@@ -1,25 +1,25 @@
|
|
1
|
-
fabricatio-0.2.1.
|
2
|
-
fabricatio-0.2.1.
|
3
|
-
fabricatio-0.2.1.
|
1
|
+
fabricatio-0.2.1.dev2.dist-info/METADATA,sha256=jNZzL0ClVEXeLkJFlLjaTo9sRHoG27EISI0JmMOqqaE,12351
|
2
|
+
fabricatio-0.2.1.dev2.dist-info/WHEEL,sha256=tpW5AN9B-9qsM9WW2FXG2r193YXiqexDadpKp0A2daI,96
|
3
|
+
fabricatio-0.2.1.dev2.dist-info/licenses/LICENSE,sha256=do7J7EiCGbq0QPbMAL_FqLYufXpHnCnXBOuqVPwSV8Y,1088
|
4
4
|
fabricatio/actions/communication.py,sha256=NZxIIncKgJSDyBrqNebUtH_haqtxHa8ld2TZxT3CMdU,429
|
5
5
|
fabricatio/actions/transmission.py,sha256=xpvKqbXqgpi1BWy-vUUvmd8NZ1GhRNfsYUBp-l2jLyk,862
|
6
6
|
fabricatio/actions/__init__.py,sha256=eFmFVPQvtNgFynIXBVr3eP-vWQDWCPng60YY5LXvZgg,115
|
7
|
-
fabricatio/config.py,sha256=
|
7
|
+
fabricatio/config.py,sha256=hDYLpxn3ZrRjoSEGXGfC8s0URpebZyLHD45jU1UJOVo,10627
|
8
8
|
fabricatio/core.py,sha256=yQK2ZrbPYDJOaNDp0Bky3muTkB-ZaQ1ld_Qfflm2dY0,5938
|
9
9
|
fabricatio/decorators.py,sha256=uzsP4tFKQNjDHBkofsjjoJA0IUAaYOtt6YVedoyOqlo,6551
|
10
10
|
fabricatio/fs/curd.py,sha256=faMstgGUiQ4k2AW3OXfvvWWTldTtKXco7QINYaMjmyA,3981
|
11
|
-
fabricatio/fs/readers.py,sha256=
|
11
|
+
fabricatio/fs/readers.py,sha256=Pz1-cdZYtmqr032dsroImlkFXAd0kCYY_9qVpD4UrG4,1045
|
12
12
|
fabricatio/fs/__init__.py,sha256=lWcKYg0v3mv2LnnSegOQaTtlVDODU0vtw_s6iKU5IqQ,122
|
13
13
|
fabricatio/journal.py,sha256=siqimKF0M_QaaOCMxtjr_BJVNyUIAQWILzE9Q4T6-7c,781
|
14
14
|
fabricatio/models/action.py,sha256=1V3upL79e3ekyGXA4bSY70N60yeL0aWak7ZPBVsFE3A,5652
|
15
|
-
fabricatio/models/advanced.py,sha256=
|
15
|
+
fabricatio/models/advanced.py,sha256=YknnBR89nFosHjbD9moyXm8vWx4uD57zUgtvRfKALLc,9704
|
16
16
|
fabricatio/models/events.py,sha256=mrihNEFgQ5o7qFWja1z_qX8dnaTLwPBoJdVlzxQV5oM,2719
|
17
|
-
fabricatio/models/generic.py,sha256=
|
18
|
-
fabricatio/models/kwargs_types.py,sha256=
|
17
|
+
fabricatio/models/generic.py,sha256=WEjZ96rTyBjaBjkM6e8E4Pg_Naot4xWRvGJteqBiCCI,5133
|
18
|
+
fabricatio/models/kwargs_types.py,sha256=sVEkaeujQDNnQzTlisnjjVjrqS2g_wa4ROVbD86nHCE,1024
|
19
19
|
fabricatio/models/role.py,sha256=RPdOcjmM6KNyH310Vx4524JQG94P5sXl_3doSrRpiKQ,1802
|
20
20
|
fabricatio/models/task.py,sha256=hogTBx74IAKfKDWghhWFR7i-LVQAn7L9PQM5tyOA5Rk,9257
|
21
21
|
fabricatio/models/tool.py,sha256=WTFnpF6xZ1nJbmIOonLsGQcM-kkDCeZiAFqyil9xg2U,6988
|
22
|
-
fabricatio/models/usages.py,sha256=
|
22
|
+
fabricatio/models/usages.py,sha256=6qoh9w1xeC-olkQjiH1oZYgqxohp0GX4dwOmSrhMn0E,25756
|
23
23
|
fabricatio/models/utils.py,sha256=i_kpcQpct04mQFk1nbcVGV-pl1YThWu4Qk3wbewzKkc,2535
|
24
24
|
fabricatio/parser.py,sha256=uLabsvF07wRKW1PoTGuGEENCx3P4mhmuO8JkmOEkKko,3522
|
25
25
|
fabricatio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -30,6 +30,6 @@ fabricatio/toolboxes/__init__.py,sha256=b13KmASO8q5fBLwew964fn9oH86ER5g-S1PgA4fZ
|
|
30
30
|
fabricatio/_rust.pyi,sha256=0wCqtwWkVxxoqprvk8T27T8QYKIAKHS7xgsmdMNjQKc,1756
|
31
31
|
fabricatio/_rust_instances.py,sha256=dl0-yZ4UvT5g20tQgnPJpmqtkjFGXNG_YK4eLfi_ugQ,279
|
32
32
|
fabricatio/__init__.py,sha256=opIrN8lGyT-h2If4Qez0bRuWBa3uIT9GsM9CZy7_XJ0,1100
|
33
|
-
fabricatio/_rust.cp312-win_amd64.pyd,sha256=
|
34
|
-
fabricatio-0.2.1.
|
35
|
-
fabricatio-0.2.1.
|
33
|
+
fabricatio/_rust.cp312-win_amd64.pyd,sha256=apS92eztfWPO-xRlnon15y0Pq7qPT1nRn652Pd2RBRw,1261056
|
34
|
+
fabricatio-0.2.1.dev2.data/scripts/tdown.exe,sha256=f7ZxXFNyP5_SiScZWZcdWE0FJbTX7l4AAKZov5XpDHk,3397120
|
35
|
+
fabricatio-0.2.1.dev2.dist-info/RECORD,,
|
File without changes
|
File without changes
|