agently 4.0.6.5__py3-none-any.whl → 4.0.6.10__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.
- agently/builtins/agent_extensions/ConfigurePromptExtension.py +2 -0
- agently/builtins/hookers/SystemMessageHooker.py +51 -7
- agently/builtins/plugins/ModelRequester/OpenAICompatible.py +7 -3
- agently/builtins/plugins/PromptGenerator/AgentlyPromptGenerator.py +68 -17
- agently/core/Agent.py +65 -23
- agently/core/ModelRequest.py +179 -18
- agently/core/Prompt.py +8 -0
- agently/core/TriggerFlow/Chunk.py +2 -2
- agently/core/TriggerFlow/Execution.py +2 -2
- agently/core/TriggerFlow/process/BaseProcess.py +40 -17
- agently/core/TriggerFlow/process/ForEachProcess.py +3 -3
- agently/core/TriggerFlow/process/MatchCaseProcess.py +6 -6
- agently/integrations/chromadb.py +159 -43
- agently/types/plugins/PromptGenerator.py +5 -1
- agently/types/trigger_flow/trigger_flow.py +6 -6
- {agently-4.0.6.5.dist-info → agently-4.0.6.10.dist-info}/METADATA +1 -1
- {agently-4.0.6.5.dist-info → agently-4.0.6.10.dist-info}/RECORD +19 -19
- {agently-4.0.6.5.dist-info → agently-4.0.6.10.dist-info}/WHEEL +0 -0
- {agently-4.0.6.5.dist-info → agently-4.0.6.10.dist-info}/licenses/LICENSE +0 -0
agently/integrations/chromadb.py
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
from agently.utils import LazyImport
|
|
1
|
+
from agently.utils import LazyImport
|
|
2
2
|
|
|
3
3
|
LazyImport.import_package("chromadb")
|
|
4
4
|
|
|
5
|
-
from typing import Callable, TypedDict, Any, TYPE_CHECKING
|
|
5
|
+
from typing import Literal, Callable, TypedDict, Any, TYPE_CHECKING, overload
|
|
6
|
+
from itertools import zip_longest
|
|
6
7
|
|
|
7
|
-
from chromadb
|
|
8
|
+
from chromadb import Client as ChromaDBClient
|
|
9
|
+
from chromadb.config import Settings
|
|
10
|
+
from chromadb.api.types import EmbeddingFunction
|
|
8
11
|
|
|
9
12
|
if TYPE_CHECKING:
|
|
10
13
|
from chromadb.api.types import (
|
|
@@ -13,9 +16,10 @@ if TYPE_CHECKING:
|
|
|
13
16
|
Embeddings,
|
|
14
17
|
QueryResult,
|
|
15
18
|
Schema,
|
|
16
|
-
CollectionMetadata,
|
|
17
19
|
DataLoader,
|
|
18
20
|
Loadable,
|
|
21
|
+
Where,
|
|
22
|
+
WhereDocument,
|
|
19
23
|
)
|
|
20
24
|
from chromadb.api.collection_configuration import CreateCollectionConfiguration
|
|
21
25
|
from chromadb.api import ClientAPI
|
|
@@ -83,29 +87,54 @@ class ChromaResults:
|
|
|
83
87
|
*,
|
|
84
88
|
queries: str | list[str],
|
|
85
89
|
results: "QueryResult",
|
|
90
|
+
distance: float | None = None,
|
|
86
91
|
):
|
|
87
92
|
if isinstance(queries, str):
|
|
88
93
|
queries = [queries]
|
|
89
|
-
|
|
94
|
+
|
|
95
|
+
ids = results.get("ids") or []
|
|
96
|
+
documents = results.get("documents")
|
|
97
|
+
metadatas = results.get("metadatas")
|
|
98
|
+
distances = results.get("distances")
|
|
99
|
+
|
|
100
|
+
if ids and len(queries) != len(ids):
|
|
90
101
|
raise ValueError(
|
|
91
|
-
f"The length of queries does not equal the length of results.\nQueries: {
|
|
102
|
+
f"The length of queries does not equal the length of results['ids'].\nQueries: {queries}\nIds: {ids}"
|
|
92
103
|
)
|
|
104
|
+
|
|
93
105
|
self._chroma_results = results
|
|
94
|
-
self._results = {}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
106
|
+
self._results: dict[str, list[dict]] = {}
|
|
107
|
+
|
|
108
|
+
doc_iter = documents if documents is not None else []
|
|
109
|
+
meta_iter = metadatas if metadatas is not None else []
|
|
110
|
+
dist_iter = distances if distances is not None else []
|
|
111
|
+
|
|
112
|
+
for query, row_ids, row_documents, row_metadatas, row_distances in zip_longest(
|
|
113
|
+
queries, ids, doc_iter, meta_iter, dist_iter, fillvalue=None
|
|
114
|
+
):
|
|
115
|
+
row_ids = row_ids or []
|
|
116
|
+
query_results: list[dict[str, Any]] = []
|
|
117
|
+
for id_, doc, meta, dist in zip_longest(
|
|
118
|
+
row_ids, row_documents or [], row_metadatas or [], row_distances or [], fillvalue=None
|
|
119
|
+
):
|
|
120
|
+
query_result = {"id": id_, "document": doc, "metadata": meta, "distance": dist}
|
|
121
|
+
if distance is None:
|
|
122
|
+
query_results.append(query_result)
|
|
123
|
+
else:
|
|
124
|
+
if isinstance(dist, (int, float)) and dist < distance:
|
|
125
|
+
query_results.append(query_result)
|
|
126
|
+
|
|
127
|
+
if query:
|
|
128
|
+
self._results[query] = query_results
|
|
104
129
|
|
|
105
130
|
def get_original_results(self):
|
|
106
131
|
return self._chroma_results
|
|
107
132
|
|
|
108
|
-
def get(self):
|
|
133
|
+
def get(self, *, simplify_single_result: bool = False):
|
|
134
|
+
if simplify_single_result:
|
|
135
|
+
results = list(self._results.values())
|
|
136
|
+
if len(results) == 1:
|
|
137
|
+
return results[0]
|
|
109
138
|
return self._results
|
|
110
139
|
|
|
111
140
|
|
|
@@ -113,55 +142,142 @@ class ChromaEmbeddingFunction(EmbeddingFunction):
|
|
|
113
142
|
def __init__(
|
|
114
143
|
self,
|
|
115
144
|
*,
|
|
116
|
-
|
|
117
|
-
agent: "BaseAgent | None" = None,
|
|
145
|
+
embedding_agent: "BaseAgent",
|
|
118
146
|
):
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
elif agent:
|
|
147
|
+
def embedding_function_by_agent(texts: list[str]) -> "Embeddings":
|
|
148
|
+
return embedding_agent.input(texts).start()
|
|
122
149
|
|
|
123
|
-
|
|
124
|
-
return agent.input(texts).start()
|
|
125
|
-
|
|
126
|
-
self.embedding_function = embedding_function_by_agent
|
|
127
|
-
else:
|
|
128
|
-
raise ValueError(
|
|
129
|
-
f"ChromaEmbeddingFunction() requires at least one definition for 'embedding_function' or 'agent'."
|
|
130
|
-
)
|
|
150
|
+
self.embedding_function = embedding_function_by_agent
|
|
131
151
|
|
|
132
|
-
def __call__(self, documents: "Documents") -> "Embeddings":
|
|
152
|
+
def __call__(self, documents: "Documents | list[str] | str") -> "Embeddings":
|
|
153
|
+
if isinstance(documents, str):
|
|
154
|
+
documents = [documents]
|
|
133
155
|
return self.embedding_function([document for document in documents])
|
|
134
156
|
|
|
135
157
|
|
|
136
158
|
class ChromaCollection:
|
|
159
|
+
|
|
137
160
|
def __init__(
|
|
138
161
|
self,
|
|
139
|
-
conn: "ClientAPI",
|
|
140
162
|
collection_name: str,
|
|
141
163
|
*,
|
|
164
|
+
conn: "ClientAPI | None" = None,
|
|
142
165
|
schema: "Schema | None" = None,
|
|
143
166
|
configuration: "CreateCollectionConfiguration | None" = None,
|
|
144
|
-
metadata: None = None,
|
|
145
|
-
|
|
146
|
-
agent: "BaseAgent | None" = None,
|
|
167
|
+
metadata: dict[str, Any] | None = None,
|
|
168
|
+
embedding_agent: "BaseAgent | None" = None,
|
|
147
169
|
data_loader: "DataLoader[Loadable] | None" = None,
|
|
148
170
|
get_or_create: bool = False,
|
|
171
|
+
hnsw_space: Literal["l2", "cosine", "ip"] = "cosine",
|
|
149
172
|
):
|
|
150
|
-
if
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
173
|
+
if conn is None:
|
|
174
|
+
conn = ChromaDBClient(Settings(anonymized_telemetry=False))
|
|
175
|
+
|
|
176
|
+
if metadata is None:
|
|
177
|
+
metadata = {}
|
|
178
|
+
|
|
179
|
+
metadata["hnsw:space"] = hnsw_space
|
|
180
|
+
|
|
181
|
+
self.embedding_function = (
|
|
182
|
+
ChromaEmbeddingFunction(embedding_agent=embedding_agent) if embedding_agent is not None else None
|
|
183
|
+
)
|
|
156
184
|
|
|
157
185
|
self._collection = conn.create_collection(
|
|
158
186
|
collection_name,
|
|
159
187
|
schema=schema,
|
|
160
188
|
configuration=configuration,
|
|
161
189
|
metadata=metadata,
|
|
162
|
-
embedding_function=embedding_function,
|
|
190
|
+
embedding_function=self.embedding_function,
|
|
163
191
|
data_loader=data_loader,
|
|
164
192
|
get_or_create=get_or_create,
|
|
165
193
|
)
|
|
166
194
|
|
|
167
|
-
def add(
|
|
195
|
+
def add(
|
|
196
|
+
self,
|
|
197
|
+
data: ChromaDataDict | list[ChromaDataDict] | ChromaData,
|
|
198
|
+
*,
|
|
199
|
+
embedding_function: "Callable[[str | list[str]], Embeddings] | None" = None,
|
|
200
|
+
):
|
|
201
|
+
embedding_function = embedding_function or self.embedding_function
|
|
202
|
+
if embedding_function is None:
|
|
203
|
+
raise NotImplementedError(
|
|
204
|
+
f"Embedding function must be assigned either in ChromaCollection initialize or .add() method."
|
|
205
|
+
)
|
|
206
|
+
if not isinstance(data, ChromaData):
|
|
207
|
+
data = ChromaData(data, embedding_function=embedding_function)
|
|
208
|
+
self._collection.add(**data.get_kwargs())
|
|
209
|
+
return self
|
|
210
|
+
|
|
211
|
+
@overload
|
|
212
|
+
def query(
|
|
213
|
+
self,
|
|
214
|
+
query_or_queries: str,
|
|
215
|
+
*,
|
|
216
|
+
embedding_function: "Callable[[str | list[str]], Embeddings] | None" = None,
|
|
217
|
+
top_n: int | None = None,
|
|
218
|
+
where: "Where | None" = None,
|
|
219
|
+
where_document: "WhereDocument | None" = None,
|
|
220
|
+
distance: float | None = None,
|
|
221
|
+
) -> list[dict[str, Any]]: ...
|
|
222
|
+
|
|
223
|
+
@overload
|
|
224
|
+
def query(
|
|
225
|
+
self,
|
|
226
|
+
query_or_queries: list[str],
|
|
227
|
+
*,
|
|
228
|
+
embedding_function: "Callable[[str | list[str]], Embeddings] | None" = None,
|
|
229
|
+
top_n: int | None = None,
|
|
230
|
+
where: "Where | None" = None,
|
|
231
|
+
where_document: "WhereDocument | None" = None,
|
|
232
|
+
distance: float | None = None,
|
|
233
|
+
) -> dict[str, list[dict[str, Any]]]: ...
|
|
234
|
+
|
|
235
|
+
def query(
|
|
236
|
+
self,
|
|
237
|
+
query_or_queries: str | list[str],
|
|
238
|
+
*,
|
|
239
|
+
embedding_function: "Callable[[str | list[str]], Embeddings] | None" = None,
|
|
240
|
+
top_n: int | None = None,
|
|
241
|
+
where: "Where | None" = None,
|
|
242
|
+
where_document: "WhereDocument | None" = None,
|
|
243
|
+
distance: float | None = None,
|
|
244
|
+
):
|
|
245
|
+
embedding_function = embedding_function or self.embedding_function
|
|
246
|
+
if embedding_function is None:
|
|
247
|
+
raise NotImplementedError(
|
|
248
|
+
f"Embedding function must be assigned either in ChromaCollection initialize or .query() method."
|
|
249
|
+
)
|
|
250
|
+
if not isinstance(query_or_queries, list):
|
|
251
|
+
query_or_queries = [query_or_queries]
|
|
252
|
+
return ChromaResults(
|
|
253
|
+
queries=query_or_queries,
|
|
254
|
+
results=self._collection.query(
|
|
255
|
+
query_embeddings=embedding_function(query_or_queries),
|
|
256
|
+
n_results=top_n or 10,
|
|
257
|
+
where=where,
|
|
258
|
+
where_document=where_document,
|
|
259
|
+
),
|
|
260
|
+
distance=distance,
|
|
261
|
+
).get(simplify_single_result=True)
|
|
262
|
+
|
|
263
|
+
def query_embeddings(
|
|
264
|
+
self,
|
|
265
|
+
embeddings_dict: dict[str, "Embedding"],
|
|
266
|
+
*,
|
|
267
|
+
top_n: int | None = None,
|
|
268
|
+
where: "Where | None" = None,
|
|
269
|
+
where_document: "WhereDocument | None" = None,
|
|
270
|
+
distance: float | None = None,
|
|
271
|
+
):
|
|
272
|
+
queries = [query for query in embeddings_dict.keys()]
|
|
273
|
+
embeddings = [embeddings for embeddings in embeddings_dict.values()]
|
|
274
|
+
return ChromaResults(
|
|
275
|
+
queries=queries,
|
|
276
|
+
results=self._collection.query(
|
|
277
|
+
query_embeddings=embeddings,
|
|
278
|
+
n_results=top_n or 10,
|
|
279
|
+
where=where,
|
|
280
|
+
where_document=where_document,
|
|
281
|
+
),
|
|
282
|
+
distance=distance,
|
|
283
|
+
).get(simplify_single_result=True)
|
|
@@ -16,7 +16,7 @@ from typing import Any, Protocol, TYPE_CHECKING
|
|
|
16
16
|
from .base import AgentlyPlugin
|
|
17
17
|
|
|
18
18
|
if TYPE_CHECKING:
|
|
19
|
-
from agently.types.data import PromptModel
|
|
19
|
+
from agently.types.data import PromptModel, SerializableData
|
|
20
20
|
from agently.core import Prompt
|
|
21
21
|
from agently.utils import Settings
|
|
22
22
|
from pydantic import BaseModel
|
|
@@ -130,3 +130,7 @@ class PromptGenerator(AgentlyPlugin, Protocol):
|
|
|
130
130
|
- For list outputs: use `BaseModel(list=output_result)` to validate.
|
|
131
131
|
"""
|
|
132
132
|
...
|
|
133
|
+
|
|
134
|
+
def to_serializable_prompt_data(self, *args, **kwargs) -> "SerializableData": ...
|
|
135
|
+
def to_json_prompt(self, *args, **kwargs) -> str: ...
|
|
136
|
+
def to_yaml_prompt(self, *args, **kwargs) -> str: ...
|
|
@@ -43,7 +43,7 @@ class TriggerFlowEventData:
|
|
|
43
43
|
trigger_type: Literal["event", "runtime_data", "flow_data"],
|
|
44
44
|
value: Any,
|
|
45
45
|
execution: "TriggerFlowExecution",
|
|
46
|
-
|
|
46
|
+
_layer_marks: list[str] | None = None,
|
|
47
47
|
):
|
|
48
48
|
self.trigger_event = trigger_event
|
|
49
49
|
self.trigger_type = trigger_type
|
|
@@ -51,7 +51,7 @@ class TriggerFlowEventData:
|
|
|
51
51
|
self.type = trigger_type
|
|
52
52
|
self.value = value
|
|
53
53
|
self.execution_id = execution.id
|
|
54
|
-
self.
|
|
54
|
+
self._layer_marks = _layer_marks if _layer_marks is not None else []
|
|
55
55
|
self.settings = execution.settings
|
|
56
56
|
|
|
57
57
|
self.get_flow_data = execution.get_flow_data
|
|
@@ -84,17 +84,17 @@ class TriggerFlowEventData:
|
|
|
84
84
|
|
|
85
85
|
@property
|
|
86
86
|
def upper_layer_mark(self):
|
|
87
|
-
return self.
|
|
87
|
+
return self._layer_marks[-2] if len(self._layer_marks) > 1 else None
|
|
88
88
|
|
|
89
89
|
@property
|
|
90
90
|
def layer_mark(self):
|
|
91
|
-
return self.
|
|
91
|
+
return self._layer_marks[-1] if len(self._layer_marks) > 0 else None
|
|
92
92
|
|
|
93
93
|
def layer_in(self):
|
|
94
|
-
self.
|
|
94
|
+
self._layer_marks.append(uuid.uuid4().hex)
|
|
95
95
|
|
|
96
96
|
def layer_out(self):
|
|
97
|
-
self.
|
|
97
|
+
self._layer_marks = self._layer_marks[:-1] if len(self._layer_marks) > 0 else []
|
|
98
98
|
|
|
99
99
|
|
|
100
100
|
TriggerFlowHandler = Callable[[TriggerFlowEventData], Any]
|
|
@@ -4,40 +4,40 @@ agently/_default_settings.yaml,sha256=6woqJ2tjg_jl6kwSOwmTMETfVraHidort2smf0Is_q
|
|
|
4
4
|
agently/base.py,sha256=PY-HgIQesv3_oBsU25Fwe96C35C4GgpaFdxLBUwh-AA,4692
|
|
5
5
|
agently/builtins/agent_extensions/AutoFuncExtension.py,sha256=TmwMazwPzb5WXfDqfedY5yZOOMTFIHqaB9Bte29adUc,2433
|
|
6
6
|
agently/builtins/agent_extensions/ChatSessionExtension.py,sha256=Y6mvnsfAY0rykKtfp-tApwJy5O4SS-YEt2-jaWr83uc,12034
|
|
7
|
-
agently/builtins/agent_extensions/ConfigurePromptExtension.py,sha256=
|
|
7
|
+
agently/builtins/agent_extensions/ConfigurePromptExtension.py,sha256=vURsWcy5UnKppBNOAy0ZnY03yMY3QqH7j3ZeixS8VOo,10230
|
|
8
8
|
agently/builtins/agent_extensions/KeyWaiterExtension.py,sha256=Rf8dB8Yt3_9IJifpiE-Rn6lLIXqZjaNp94lnX6Betgw,5555
|
|
9
9
|
agently/builtins/agent_extensions/ToolExtension.py,sha256=S3jjumHiauEQ-m46Zkh-1I9ih02kKoj8sBEU82woz1E,6886
|
|
10
10
|
agently/builtins/agent_extensions/__init__.py,sha256=IxWRQogF8PCVNXeY7D4qhGukEx3JFvfLlUW2x0FbyfA,852
|
|
11
11
|
agently/builtins/hookers/ConsoleHooker.py,sha256=aJdDj_nG8CiwyelA505zvtpzBSwD52nFIkBRDJGgq3Y,8099
|
|
12
12
|
agently/builtins/hookers/PureLoggerHooker.py,sha256=fzN0OfhQzgns4KeCNH-qcdm-BdQT0W2kqEmt3Zp2pYI,1906
|
|
13
|
-
agently/builtins/hookers/SystemMessageHooker.py,sha256=
|
|
14
|
-
agently/builtins/plugins/ModelRequester/OpenAICompatible.py,sha256=
|
|
15
|
-
agently/builtins/plugins/PromptGenerator/AgentlyPromptGenerator.py,sha256=
|
|
13
|
+
agently/builtins/hookers/SystemMessageHooker.py,sha256=1nh1FY70PYyZOAQGfQiGnwIvo4ZF3NSAjeghI3sInn4,7207
|
|
14
|
+
agently/builtins/plugins/ModelRequester/OpenAICompatible.py,sha256=Druzptw_aKtCAI-a3wqFO4KgtzAP0L6HZZ_2I7t2u80,25397
|
|
15
|
+
agently/builtins/plugins/PromptGenerator/AgentlyPromptGenerator.py,sha256=GRRR9uxgyCXHKgt_r2BinWnhKy8rYUN8CG9ld2P8n4E,30841
|
|
16
16
|
agently/builtins/plugins/ResponseParser/AgentlyResponseParser.py,sha256=FEhfsiHB4Bx7HfghnObklLj08j8IVwGh0WEVD6U-G3U,17445
|
|
17
17
|
agently/builtins/plugins/ToolManager/AgentlyToolManager.py,sha256=oaqte5LAryZQMD6vuEbKhe6kOLUyZTRZswC1MDFiYxw,9138
|
|
18
18
|
agently/builtins/plugins/__init__.py,sha256=wj4_U9TTekc2CmjppbXKUREDFRXFX1y0ySOW-CxQuok,801
|
|
19
19
|
agently/builtins/tools/Browse.py,sha256=gIePs-gtsqOI_ZTReGqEcoKvhs4FkBzTxow--QS5_ek,3469
|
|
20
20
|
agently/builtins/tools/Search.py,sha256=tUynNiW_ZMAGaB2ua3HRcY_trIbLEoASFE-p2QMQ0Zg,7362
|
|
21
21
|
agently/builtins/tools/__init__.py,sha256=pFOWgH2C3xRvgQo3UVdkj4yHjF9nNtmoVHmOZfoGsyU,647
|
|
22
|
-
agently/core/Agent.py,sha256=
|
|
22
|
+
agently/core/Agent.py,sha256=hxRR3ca71XAabViIZGL31EYF4CAxmQS2KJrktCUs39k,10329
|
|
23
23
|
agently/core/EventCenter.py,sha256=sknU5w9MpGDQgMOF9c5k4PfM4SNT5X_LrpYte2HaFNM,10861
|
|
24
24
|
agently/core/ExtensionHandlers.py,sha256=88iSAW50bgMshB56cTgKg30eOjZQyXiJY1en4w7afWY,2076
|
|
25
|
-
agently/core/ModelRequest.py,sha256=
|
|
25
|
+
agently/core/ModelRequest.py,sha256=Sagd7HQozPPM41gbhYU9Lzj68IKPgR_xa00PA7lzpF4,23171
|
|
26
26
|
agently/core/PluginManager.py,sha256=oUnXbe1ilQTOWwnENxtGtV6wG-yZriCxniqfuxuTFO0,4354
|
|
27
|
-
agently/core/Prompt.py,sha256=
|
|
27
|
+
agently/core/Prompt.py,sha256=oAxRZ7kG07mM6G7p6gP_zX41TgGb8vA-IilcnCb_Gc4,8432
|
|
28
28
|
agently/core/Tool.py,sha256=PNYf_BwVefr8IOqf5asLaVq2fU7hQaFJwJVj3S4fq84,1871
|
|
29
29
|
agently/core/TriggerFlow/BluePrint.py,sha256=Lz-wbA0f79t7VjvX0knH-9AC_Qz9wts0QFemL97R3jo,4810
|
|
30
|
-
agently/core/TriggerFlow/Chunk.py,sha256=
|
|
31
|
-
agently/core/TriggerFlow/Execution.py,sha256=
|
|
30
|
+
agently/core/TriggerFlow/Chunk.py,sha256=d5cdK8fL-Ayg4-6qJom0J3wDIZFevoCw_kHGYMXBKOU,1559
|
|
31
|
+
agently/core/TriggerFlow/Execution.py,sha256=sXxDt5l9m2ZWMG6JZjnt50akyDFEu4I-YB2yhW-UP5E,11640
|
|
32
32
|
agently/core/TriggerFlow/Process.py,sha256=doIDUa7x0j1TVuOhp-hraC0hHLwpistF-Dksf76NJvQ,837
|
|
33
33
|
agently/core/TriggerFlow/TriggerFlow.py,sha256=03xC1EdWiNfnRbAocH-97JcxyzfCnChivI1KmvPt6-E,7671
|
|
34
34
|
agently/core/TriggerFlow/__init__.py,sha256=eHc6ldUIS0kka_1fZXkdaHFnSDoXaGSvXggwVszMAJQ,911
|
|
35
|
-
agently/core/TriggerFlow/process/BaseProcess.py,sha256=
|
|
36
|
-
agently/core/TriggerFlow/process/ForEachProcess.py,sha256=
|
|
37
|
-
agently/core/TriggerFlow/process/MatchCaseProcess.py,sha256
|
|
35
|
+
agently/core/TriggerFlow/process/BaseProcess.py,sha256=oUlsj0AgK39e24kGWCZY6pXDlpbSVJ-mh-UPhJrqgRI,14467
|
|
36
|
+
agently/core/TriggerFlow/process/ForEachProcess.py,sha256=rjUVouZENnuGFp7GXGTgWJT7uMEhczHamWr9cFugsh0,4549
|
|
37
|
+
agently/core/TriggerFlow/process/MatchCaseProcess.py,sha256=MKY5Yh66JiMABhCzamRl8UZOBjbD75TFp84Jw6o_t68,7900
|
|
38
38
|
agently/core/TriggerFlow/process/__init__.py,sha256=BP5bAr9LRVVD83KFqXeprgTmXA1iCSOSsD509BtoX_E,753
|
|
39
39
|
agently/core/__init__.py,sha256=CPglSpW5oEEmWpCpdvv9wK4myXmVipjuZm5HtMq6Vxo,1214
|
|
40
|
-
agently/integrations/chromadb.py,sha256=
|
|
40
|
+
agently/integrations/chromadb.py,sha256=hLrjwsU_d4SOGRX0bf-55uiA73YarIzRa8ORFnwu3W8,9797
|
|
41
41
|
agently/types/__init__.py,sha256=xb8GMY-ULncO_PY9rfRUsyi12wAQQJx8gAAnoM30uZA,592
|
|
42
42
|
agently/types/data/__init__.py,sha256=qladqSEqcAUW_XzdTDl4cvaraq_DpANy3aZbIPxoygk,1627
|
|
43
43
|
agently/types/data/event.py,sha256=LFQW7MN_QGOis3XV-8K6jNXWsLvT7tYxo4BZbUBCpfI,1790
|
|
@@ -48,13 +48,13 @@ agently/types/data/serializable.py,sha256=v2KlyKNOKp4L6J_Ueupb-gCyrnngvBskFUwNPS
|
|
|
48
48
|
agently/types/data/tool.py,sha256=wE8Dda2JtY5cojpHUuQrw7PNeVZ6Zma968bn-pUmS7I,1529
|
|
49
49
|
agently/types/plugins/EventHooker.py,sha256=kb80-baVc3fVlrddW5syv9uSD8a2Mcw8Fd3I2HQhY_Y,1030
|
|
50
50
|
agently/types/plugins/ModelRequester.py,sha256=urG1zFX0b4U6ZKSO50IbW5IHK3ydmRgUom7O7Niqk8s,3875
|
|
51
|
-
agently/types/plugins/PromptGenerator.py,sha256=
|
|
51
|
+
agently/types/plugins/PromptGenerator.py,sha256=V8kqT0Eeq09AQqfGA-SZ5mNKeit1UrmqlDQCquSMzUU,4752
|
|
52
52
|
agently/types/plugins/ResponseParser.py,sha256=_IRbQhT-G1ZNg2zkJgCYNF5qRaIzrDfbxLC7kO-tdK4,3984
|
|
53
53
|
agently/types/plugins/ToolManager.py,sha256=q1Y3G_tzh1AU3s13H-zTDZIkR4W1mjh9E6AKudFOvyg,2421
|
|
54
54
|
agently/types/plugins/__init__.py,sha256=gz_EpgBQGndIQHY5vJB2YRzAN5yIb3FZZG7pC8lB1lM,848
|
|
55
55
|
agently/types/plugins/base.py,sha256=AoNLwsH5IZBQt7_NZfxMWMhAk6PJSOFHR0IYOXp1imI,1167
|
|
56
56
|
agently/types/trigger_flow/__init__.py,sha256=Gj31SmWBC4qtrOqQedyGsnCfeSkUf3XvZNFrJ2QbMNw,777
|
|
57
|
-
agently/types/trigger_flow/trigger_flow.py,sha256=
|
|
57
|
+
agently/types/trigger_flow/trigger_flow.py,sha256=6lvhDwizIV5p3h61l1GsmJU_9Tw8v3u-SnHuygkSJdo,3799
|
|
58
58
|
agently/utils/DataFormatter.py,sha256=0P92t81vnp-rJSJvlbTF3yM-PRiteB19BNEQ8cmvmns,9444
|
|
59
59
|
agently/utils/DataLocator.py,sha256=ss8OLet9HN0U1PZb-OCHS6KL54kv7vFZph6G0-GBidk,6015
|
|
60
60
|
agently/utils/DataPathBuilder.py,sha256=sEzE1i2EWn7NMkCCXDT50gR6_qMzcZ0y0YGkYbXdB3s,10007
|
|
@@ -70,7 +70,7 @@ agently/utils/Storage.py,sha256=E7QyNJ9T0yOUafPgdP90La698hgLMSGjhJ7qCEHzxxw,9438
|
|
|
70
70
|
agently/utils/StreamingJSONCompleter.py,sha256=aZ9zuGUTQlP-QKbXHUZCf6EtVuG49MKn8xdhw0VhDEA,4292
|
|
71
71
|
agently/utils/StreamingJSONParser.py,sha256=sPPJOtj5OYvsrukRErcoxRl4yuV1zDuf7pQ_pvw_Zow,21116
|
|
72
72
|
agently/utils/__init__.py,sha256=7MDln5OVkqFEdhhuG8VTdr2q02UWwCj-udndwzWV_iQ,1280
|
|
73
|
-
agently-4.0.6.
|
|
74
|
-
agently-4.0.6.
|
|
75
|
-
agently-4.0.6.
|
|
76
|
-
agently-4.0.6.
|
|
73
|
+
agently-4.0.6.10.dist-info/METADATA,sha256=FfpitXk1hlaWpkToJ08XHQhbkpC_zijeCMN2UaZI0Xs,7113
|
|
74
|
+
agently-4.0.6.10.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
75
|
+
agently-4.0.6.10.dist-info/licenses/LICENSE,sha256=Y5ZgAdYgMFigPT8dhN18dTLRtBshOSfWhTDRO1t0Cq4,11360
|
|
76
|
+
agently-4.0.6.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|