fabricatio 0.14.5__cp312-cp312-win_amd64.whl → 0.16.1__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.
@@ -91,3 +91,7 @@ if find_spec("fabricatio_translate"):
91
91
  from fabricatio_locale.capabilities.localize import Localize
92
92
 
93
93
  __all__ += ["Localize"]
94
+ if find_spec("fabricatio_diff"):
95
+ from fabricatio_diff.capabilities.diff_edit import DiffEdit
96
+
97
+ __all__ += ["DiffEdit"]
@@ -55,3 +55,8 @@ if find_spec("fabricatio_memory"):
55
55
  from fabricatio_memory.models.note import Note
56
56
 
57
57
  __all__ += ["Note"]
58
+
59
+ if find_spec("fabricatio_diff"):
60
+ from fabricatio_diff.models.diff import Diff
61
+
62
+ __all__ += ["Diff"]
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fabricatio
3
- Version: 0.14.5
3
+ Version: 0.16.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,plot,translate,locale] ; extra == 'full'
13
+ Requires-Dist: fabricatio[rag,cli,typst,rule,judge,capabilities,actions,improve,digest,memory,anki,question,tagging,improve,rag,yue,tool,plot,translate,locale,diff] ; 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'
@@ -29,6 +29,7 @@ Requires-Dist: fabricatio-tool ; extra == 'tool'
29
29
  Requires-Dist: fabricatio-plot ; extra == 'plot'
30
30
  Requires-Dist: fabricatio-translate ; extra == 'translate'
31
31
  Requires-Dist: fabricatio-locale ; extra == 'locale'
32
+ Requires-Dist: fabricatio-diff ; extra == 'diff'
32
33
  Provides-Extra: full
33
34
  Provides-Extra: anki
34
35
  Provides-Extra: memory
@@ -48,6 +49,7 @@ Provides-Extra: tool
48
49
  Provides-Extra: plot
49
50
  Provides-Extra: translate
50
51
  Provides-Extra: locale
52
+ Provides-Extra: diff
51
53
  License-File: LICENSE
52
54
  Summary: A LLM multi-agent framework.
53
55
  Keywords: ai,agents,multi-agent,llm,pyo3
@@ -295,10 +297,11 @@ log_level = "INFO"
295
297
  Contributions are welcome! Follow these steps:
296
298
 
297
299
  1. Fork the repository.
298
- 2. Create your feature branch (`git checkout -b feature/new-feature`).
299
- 3. Commit your changes (`git commit -am 'Add new feature'`).
300
- 4. Push to the branch (`git push origin feature/new-feature`).
301
- 5. Create a new Pull Request.
300
+ 2. Create your feature branch (`git checkout -b feat/new-feature`).
301
+ 3. [Optional]Create a py/rs subpackage with `make rs` or `make py`
302
+ 4. Commit your changes (`git commit -am 'Add new feature'`).
303
+ 5. Push to the branch (`git push origin feat/new-feature`).
304
+ 6. Create a new Pull Request.
302
305
 
303
306
  ## License
304
307
 
@@ -0,0 +1,12 @@
1
+ fabricatio-0.16.1.data/scripts/tdown.exe,sha256=NmIsN5rSiLhmZqBQRZDksLm6z9Zibt5wNKGFAjj-boY,3828224
2
+ fabricatio-0.16.1.dist-info/METADATA,sha256=rigtJ1eAqJ6ClSK9lid1GWPS51tF_xUSZ3ZfDPrXWG8,9920
3
+ fabricatio-0.16.1.dist-info/WHEEL,sha256=nt3Fvhb4VwdyxisCUlWW94P627fWRNU9JcC8CrJr20Q,96
4
+ fabricatio-0.16.1.dist-info/licenses/LICENSE,sha256=do7J7EiCGbq0QPbMAL_FqLYufXpHnCnXBOuqVPwSV8Y,1088
5
+ fabricatio/__init__.py,sha256=E4CcZi8ry4WxcO-Ety0lzQtln9VaYM9c0g7s925gR9k,590
6
+ fabricatio/actions/__init__.py,sha256=LUG5gCijcn-QgAtjkLeQO3NAXW0wEiuTmm371avzQbQ,2322
7
+ fabricatio/capabilities/__init__.py,sha256=dreapOd29c0n6A7KXV_b8mQoLEK3i1IKIeY4anZJ8Xk,3358
8
+ fabricatio/models/__init__.py,sha256=6PIK3DWWtF-qu06lC5SNn5DynpQmf6wPxtE-221q4h8,1772
9
+ fabricatio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ fabricatio/rust.cp312-win_amd64.pyd,sha256=Auj8pCTtoO82KyNyP989y-B7fnmBA8xEK4GP6aFpupE,279040
11
+ fabricatio/workflows/__init__.py,sha256=Twr7FaI7scUhz0LOlPktB6lf_k3VdcHNabCjpTsw938,315
12
+ fabricatio-0.16.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.9.0)
2
+ Generator: maturin (1.9.1)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-win_amd64
Binary file
@@ -1,12 +0,0 @@
1
- fabricatio-0.14.5.data/scripts/tdown.exe,sha256=v99sM-uQm48WisWKrB29dBA2j8IotpIra8A4YJ-H3CA,3836928
2
- fabricatio-0.14.5.dist-info/METADATA,sha256=ZF6y-9-6fImcvw2XFTlvS-MS5RwxmWpyVlQyAMldGBw,9782
3
- fabricatio-0.14.5.dist-info/WHEEL,sha256=0ua6B-UmXPKizyn4Mhcu6S66EB8t6wxm_Wsw5H1bZYs,96
4
- fabricatio-0.14.5.dist-info/licenses/LICENSE,sha256=do7J7EiCGbq0QPbMAL_FqLYufXpHnCnXBOuqVPwSV8Y,1088
5
- fabricatio/__init__.py,sha256=E4CcZi8ry4WxcO-Ety0lzQtln9VaYM9c0g7s925gR9k,590
6
- fabricatio/actions/__init__.py,sha256=LUG5gCijcn-QgAtjkLeQO3NAXW0wEiuTmm371avzQbQ,2322
7
- fabricatio/capabilities/__init__.py,sha256=XwfTGv9OTQRh0oItCEO5NAHzWw2TDaCNA2pIkVHs3HA,3228
8
- fabricatio/models/__init__.py,sha256=Nn1WXRlFOj2hwLB3VD-h0osXu6pL2nAaoga5BRn5Qjo,1659
9
- fabricatio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- fabricatio/rust.cp312-win_amd64.pyd,sha256=VoeT2vaHduXI0vdlG3aFFJacciVhBudRh9v8zYuxAPY,279552
11
- fabricatio/workflows/__init__.py,sha256=Twr7FaI7scUhz0LOlPktB6lf_k3VdcHNabCjpTsw938,315
12
- fabricatio-0.14.5.dist-info/RECORD,,