aient 1.1.96__py3-none-any.whl → 1.1.97__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.
@@ -93,8 +93,8 @@ class Texts(ContextProvider):
93
93
  return self._text if self._text is not None else ""
94
94
 
95
95
  class Tools(ContextProvider):
96
- def __init__(self, tools_json: Optional[List[Dict]] = None):
97
- super().__init__("tools")
96
+ def __init__(self, tools_json: Optional[List[Dict]] = None, name: str = "tools"):
97
+ super().__init__(name)
98
98
  self._tools_json = tools_json or []
99
99
  def update(self, tools_json: List[Dict]):
100
100
  self._tools_json = tools_json
@@ -105,8 +105,8 @@ class Tools(ContextProvider):
105
105
  return f"<tools>{str(self._tools_json)}</tools>"
106
106
 
107
107
  class Files(ContextProvider):
108
- def __init__(self, *paths: Union[str, List[str]]):
109
- super().__init__("files")
108
+ def __init__(self, *paths: Union[str, List[str]], name: str = "files"):
109
+ super().__init__(name)
110
110
  self._files: Dict[str, str] = {}
111
111
 
112
112
  file_paths: List[str] = []
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aient
3
- Version: 1.1.96
3
+ Version: 1.1.97
4
4
  Summary: Aient: The Awakening of Agent.
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  aient/__init__.py,sha256=SRfF7oDVlOOAi6nGKiJIUK6B_arqYLO9iSMp-2IZZps,21
2
2
  aient/architext/architext/__init__.py,sha256=79Ih1151rfcqZdr7F8HSZSTs_iT2SKd1xCkehMsXeXs,19
3
- aient/architext/architext/core.py,sha256=EmzJxokUvYNlreaX0QtJNb1yLVzptz-GZNTScMJ-FhY,20691
3
+ aient/architext/architext/core.py,sha256=-uu6CelQyKJQ7e6xTZWRxnC-yvxeLiIl8siQdXcL8RI,20727
4
4
  aient/architext/test/openai_client.py,sha256=Dqtbmubv6vwF8uBqcayG0kbsiO65of7sgU2-DRBi-UM,4590
5
5
  aient/architext/test/test.py,sha256=URVDaUfxxPU4yobojJC7SO1cBsM0Hzz96ZW3lYYMWGo,48176
6
6
  aient/architext/test/test_save_load.py,sha256=o8DqH6gDYZkFkQy-a7blqLtJTRj5e4a-Lil48pJ0V3g,3260
@@ -35,8 +35,8 @@ aient/plugins/write_file.py,sha256=Jt8fOEwqhYiSWpCbwfAr1xoi_BmFnx3076GMhuL06uI,3
35
35
  aient/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
36
  aient/utils/prompt.py,sha256=UcSzKkFE4-h_1b6NofI6xgk3GoleqALRKY8VBaXLjmI,11311
37
37
  aient/utils/scripts.py,sha256=VqtK4RFEx7KxkmcqG3lFDS1DxoNlFFGErEjopVcc8IE,40974
38
- aient-1.1.96.dist-info/licenses/LICENSE,sha256=XNdbcWldt0yaNXXWB_Bakoqnxb3OVhUft4MgMA_71ds,1051
39
- aient-1.1.96.dist-info/METADATA,sha256=6jViFaxqeoQcCHKzhO1o6U5jWairN5nHEm0KSovVvr4,4842
40
- aient-1.1.96.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
41
- aient-1.1.96.dist-info/top_level.txt,sha256=3oXzrP5sAVvyyqabpeq8A2_vfMtY554r4bVE-OHBrZk,6
42
- aient-1.1.96.dist-info/RECORD,,
38
+ aient-1.1.97.dist-info/licenses/LICENSE,sha256=XNdbcWldt0yaNXXWB_Bakoqnxb3OVhUft4MgMA_71ds,1051
39
+ aient-1.1.97.dist-info/METADATA,sha256=iNrH1fwUGshVwM3UmFmun1CV7qPH61FPl1XpUmMemyo,4842
40
+ aient-1.1.97.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
41
+ aient-1.1.97.dist-info/top_level.txt,sha256=3oXzrP5sAVvyyqabpeq8A2_vfMtY554r4bVE-OHBrZk,6
42
+ aient-1.1.97.dist-info/RECORD,,
File without changes