fmtr.tools 1.1.8__py3-none-any.whl → 1.1.9__py3-none-any.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.
Potentially problematic release.
This version of fmtr.tools might be problematic. Click here for more details.
- fmtr/tools/ai_tools/agentic_tools.py +11 -1
- fmtr/tools/version +1 -1
- {fmtr_tools-1.1.8.dist-info → fmtr_tools-1.1.9.dist-info}/METADATA +37 -37
- {fmtr_tools-1.1.8.dist-info → fmtr_tools-1.1.9.dist-info}/RECORD +8 -8
- {fmtr_tools-1.1.8.dist-info → fmtr_tools-1.1.9.dist-info}/WHEEL +0 -0
- {fmtr_tools-1.1.8.dist-info → fmtr_tools-1.1.9.dist-info}/entry_points.txt +0 -0
- {fmtr_tools-1.1.8.dist-info → fmtr_tools-1.1.9.dist-info}/licenses/LICENSE +0 -0
- {fmtr_tools-1.1.8.dist-info → fmtr_tools-1.1.9.dist-info}/top_level.txt +0 -0
|
@@ -1,12 +1,14 @@
|
|
|
1
|
+
from typing import List, Optional
|
|
2
|
+
|
|
1
3
|
import pydantic_ai
|
|
2
4
|
from pydantic_ai import RunContext
|
|
3
5
|
from pydantic_ai.agent import AgentRunResult, Agent
|
|
4
6
|
from pydantic_ai.models.openai import OpenAIModel
|
|
5
7
|
from pydantic_ai.providers.openai import OpenAIProvider
|
|
6
|
-
from typing import List, Optional
|
|
7
8
|
|
|
8
9
|
from fmtr.tools import environment_tools as env
|
|
9
10
|
from fmtr.tools.constants import Constants
|
|
11
|
+
from fmtr.tools.string_tools import truncate_mid
|
|
10
12
|
|
|
11
13
|
pydantic_ai.Agent.instrument_all()
|
|
12
14
|
|
|
@@ -97,6 +99,14 @@ class Task:
|
|
|
97
99
|
|
|
98
100
|
return []
|
|
99
101
|
|
|
102
|
+
def __repr__(self):
|
|
103
|
+
"""
|
|
104
|
+
|
|
105
|
+
String representation of the object
|
|
106
|
+
|
|
107
|
+
"""
|
|
108
|
+
return f'{self.__class__.__name__}({repr(truncate_mid(self.SYSTEM_PROMPT_STATIC, 100))})'
|
|
109
|
+
|
|
100
110
|
if __name__ == '__main__':
|
|
101
111
|
import asyncio
|
|
102
112
|
from fmtr.tools import dm
|
fmtr/tools/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.9
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fmtr.tools
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.9
|
|
4
4
|
Summary: Collection of high-level tools to simplify everyday development tasks, with a focus on AI/ML
|
|
5
5
|
Home-page: https://github.com/fmtr/fmtr.tools
|
|
6
6
|
Author: Frontmatter
|
|
@@ -9,51 +9,51 @@ License: Copyright © 2025 Frontmatter. All rights reserved.
|
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE
|
|
11
11
|
Provides-Extra: test
|
|
12
|
-
Requires-Dist:
|
|
13
|
-
Requires-Dist: pydantic-
|
|
14
|
-
Requires-Dist:
|
|
15
|
-
Requires-Dist: torchvision; extra == "test"
|
|
16
|
-
Requires-Dist: pyyaml; extra == "test"
|
|
12
|
+
Requires-Dist: json_repair; extra == "test"
|
|
13
|
+
Requires-Dist: pydantic-ai[logfire,openai]; extra == "test"
|
|
14
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
17
15
|
Requires-Dist: openai; extra == "test"
|
|
18
|
-
Requires-Dist:
|
|
19
|
-
Requires-Dist:
|
|
20
|
-
Requires-Dist: faker; extra == "test"
|
|
21
|
-
Requires-Dist: pydevd-pycharm; extra == "test"
|
|
22
|
-
Requires-Dist: distributed; extra == "test"
|
|
23
|
-
Requires-Dist: contexttimer; extra == "test"
|
|
24
|
-
Requires-Dist: semver; extra == "test"
|
|
25
|
-
Requires-Dist: bokeh; extra == "test"
|
|
26
|
-
Requires-Dist: torchaudio; extra == "test"
|
|
27
|
-
Requires-Dist: huggingface_hub; extra == "test"
|
|
28
|
-
Requires-Dist: google-auth-oauthlib; extra == "test"
|
|
16
|
+
Requires-Dist: tabulate; extra == "test"
|
|
17
|
+
Requires-Dist: google-auth-httplib2; extra == "test"
|
|
29
18
|
Requires-Dist: openpyxl; extra == "test"
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist: pytest-cov; extra == "test"
|
|
32
|
-
Requires-Dist: uvicorn[standard]; extra == "test"
|
|
33
|
-
Requires-Dist: html2text; extra == "test"
|
|
34
|
-
Requires-Dist: google-api-python-client; extra == "test"
|
|
35
|
-
Requires-Dist: sentence_transformers; extra == "test"
|
|
36
|
-
Requires-Dist: logfire; extra == "test"
|
|
19
|
+
Requires-Dist: fastapi; extra == "test"
|
|
37
20
|
Requires-Dist: Unidecode; extra == "test"
|
|
38
|
-
Requires-Dist: diskcache; extra == "test"
|
|
39
21
|
Requires-Dist: flet[all]; extra == "test"
|
|
22
|
+
Requires-Dist: dask[bag]; extra == "test"
|
|
23
|
+
Requires-Dist: uvicorn[standard]; extra == "test"
|
|
24
|
+
Requires-Dist: pydevd-pycharm; extra == "test"
|
|
25
|
+
Requires-Dist: huggingface_hub; extra == "test"
|
|
26
|
+
Requires-Dist: logfire; extra == "test"
|
|
27
|
+
Requires-Dist: pyyaml; extra == "test"
|
|
28
|
+
Requires-Dist: sre_yield; extra == "test"
|
|
29
|
+
Requires-Dist: docker; extra == "test"
|
|
30
|
+
Requires-Dist: flet-webview; extra == "test"
|
|
31
|
+
Requires-Dist: logfire[fastapi]; extra == "test"
|
|
32
|
+
Requires-Dist: bokeh; extra == "test"
|
|
33
|
+
Requires-Dist: pydantic; extra == "test"
|
|
40
34
|
Requires-Dist: pandas; extra == "test"
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: semver; extra == "test"
|
|
36
|
+
Requires-Dist: faker; extra == "test"
|
|
37
|
+
Requires-Dist: contexttimer; extra == "test"
|
|
38
|
+
Requires-Dist: pymupdf4llm; extra == "test"
|
|
39
|
+
Requires-Dist: pydantic-settings; extra == "test"
|
|
43
40
|
Requires-Dist: peft; extra == "test"
|
|
44
|
-
Requires-Dist:
|
|
41
|
+
Requires-Dist: torchaudio; extra == "test"
|
|
45
42
|
Requires-Dist: google-auth; extra == "test"
|
|
46
|
-
Requires-Dist: transformers[sentencepiece]; extra == "test"
|
|
47
|
-
Requires-Dist: tabulate; extra == "test"
|
|
48
|
-
Requires-Dist: logfire[fastapi]; extra == "test"
|
|
49
|
-
Requires-Dist: ollama; extra == "test"
|
|
50
43
|
Requires-Dist: flet-video; extra == "test"
|
|
44
|
+
Requires-Dist: tinynetrc; extra == "test"
|
|
45
|
+
Requires-Dist: torchvision; extra == "test"
|
|
46
|
+
Requires-Dist: google-auth-oauthlib; extra == "test"
|
|
51
47
|
Requires-Dist: deepmerge; extra == "test"
|
|
52
|
-
Requires-Dist:
|
|
53
|
-
Requires-Dist:
|
|
54
|
-
Requires-Dist:
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Requires-Dist:
|
|
48
|
+
Requires-Dist: distributed; extra == "test"
|
|
49
|
+
Requires-Dist: transformers[sentencepiece]; extra == "test"
|
|
50
|
+
Requires-Dist: ollama; extra == "test"
|
|
51
|
+
Requires-Dist: pymupdf; extra == "test"
|
|
52
|
+
Requires-Dist: html2text; extra == "test"
|
|
53
|
+
Requires-Dist: sentence_transformers; extra == "test"
|
|
54
|
+
Requires-Dist: tokenizers; extra == "test"
|
|
55
|
+
Requires-Dist: google-api-python-client; extra == "test"
|
|
56
|
+
Requires-Dist: diskcache; extra == "test"
|
|
57
57
|
Provides-Extra: yaml
|
|
58
58
|
Requires-Dist: pyyaml; extra == "yaml"
|
|
59
59
|
Provides-Extra: logging
|
|
@@ -43,11 +43,11 @@ fmtr/tools/tabular_tools.py,sha256=tpIpZzYku1HcJrHZJL6BC39LmN3WUWVhFbK2N7nDVmE,1
|
|
|
43
43
|
fmtr/tools/tokenization_tools.py,sha256=me-IBzSLyNYejLybwjO9CNB6Mj2NYfKPaOVThXyaGNg,4268
|
|
44
44
|
fmtr/tools/tools.py,sha256=CAsApa1YwVdNE6H66Vjivs_mXYvOas3rh7fPELAnTpk,795
|
|
45
45
|
fmtr/tools/unicode_tools.py,sha256=yS_9wpu8ogNoiIL7s1G_8bETFFO_YQlo4LNPv1NLDeY,52
|
|
46
|
-
fmtr/tools/version,sha256=
|
|
46
|
+
fmtr/tools/version,sha256=SEVut3Hfqhsf1g__PFKzWToL-USJphz5a0yDCdBCZyY,5
|
|
47
47
|
fmtr/tools/version_tools.py,sha256=yNs_CGqWpqE4jbK9wsPIi14peJVXYbhIcMqHAFOw3yE,1480
|
|
48
48
|
fmtr/tools/yaml_tools.py,sha256=Ol43ZwbnSXGnn1K98Uxx61KPGSqfC4axE-X2q1LKMwk,349
|
|
49
49
|
fmtr/tools/ai_tools/__init__.py,sha256=JZrLuOFNV1A3wvJgonxOgz_4WS-7MfCuowGWA5uYCjs,372
|
|
50
|
-
fmtr/tools/ai_tools/agentic_tools.py,sha256=
|
|
50
|
+
fmtr/tools/ai_tools/agentic_tools.py,sha256=YebH7R9ovVo3GzfWAZxY49e2fNt13APDMe290xx7zks,3720
|
|
51
51
|
fmtr/tools/ai_tools/inference_tools.py,sha256=yF8Oxph0L8W2CnK_o-MVztBhWVwBpgOEkx9_m3uqQww,11840
|
|
52
52
|
fmtr/tools/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
fmtr/tools/tests/conftest.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -57,9 +57,9 @@ fmtr/tools/tests/test_environment.py,sha256=iHaiMQfECYZPkPKwfuIZV9uHuWe3aE-p_dN_
|
|
|
57
57
|
fmtr/tools/tests/test_json.py,sha256=IeSP4ziPvRcmS8kq7k9tHonC9rN5YYq9GSNT2ul6Msk,287
|
|
58
58
|
fmtr/tools/tests/test_path.py,sha256=AkZQa6_8BQ-VaCyL_J-iKmdf2ZaM-xFYR37Kun3k4_g,2188
|
|
59
59
|
fmtr/tools/tests/test_yaml.py,sha256=jc0TwwKu9eC0LvFGNMERdgBue591xwLxYXFbtsRwXVM,287
|
|
60
|
-
fmtr_tools-1.1.
|
|
61
|
-
fmtr_tools-1.1.
|
|
62
|
-
fmtr_tools-1.1.
|
|
63
|
-
fmtr_tools-1.1.
|
|
64
|
-
fmtr_tools-1.1.
|
|
65
|
-
fmtr_tools-1.1.
|
|
60
|
+
fmtr_tools-1.1.9.dist-info/licenses/LICENSE,sha256=FW9aa6vVN5IjRQWLT43hs4_koYSmpcbIovlKeAJ0_cI,10757
|
|
61
|
+
fmtr_tools-1.1.9.dist-info/METADATA,sha256=Xzod21_rMKKLHj7K5Zi37jKRsCSFRmDaOe6f_ui5-i4,14646
|
|
62
|
+
fmtr_tools-1.1.9.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
63
|
+
fmtr_tools-1.1.9.dist-info/entry_points.txt,sha256=e-eOW1Ml13tbxHC6Er1MnVOEDePeWw7DKwlE-l-gCY0,205
|
|
64
|
+
fmtr_tools-1.1.9.dist-info/top_level.txt,sha256=t5341a8ii3n4RFizwTeXGmcq_pf4GqL1h9ylE5LIWRk,12
|
|
65
|
+
fmtr_tools-1.1.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|