camel-ai 0.2.33__py3-none-any.whl → 0.2.35__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 camel-ai might be problematic. Click here for more details.
- camel/__init__.py +1 -1
- camel/agents/_types.py +1 -1
- camel/agents/_utils.py +4 -4
- camel/agents/chat_agent.py +174 -29
- camel/agents/knowledge_graph_agent.py +5 -0
- camel/configs/openai_config.py +20 -16
- camel/datasets/__init__.py +2 -4
- camel/datasets/base_generator.py +170 -226
- camel/datasets/few_shot_generator.py +261 -0
- camel/datasets/static_dataset.py +54 -2
- camel/memories/agent_memories.py +47 -1
- camel/memories/base.py +23 -1
- camel/memories/records.py +5 -0
- camel/models/openai_compatible_model.py +2 -4
- camel/models/sglang_model.py +4 -1
- camel/models/stub_model.py +25 -0
- camel/retrievers/vector_retriever.py +12 -7
- camel/storages/key_value_storages/__init__.py +2 -1
- camel/storages/key_value_storages/json.py +3 -7
- camel/storages/vectordb_storages/base.py +5 -1
- camel/toolkits/__init__.py +2 -1
- camel/toolkits/file_write_toolkit.py +24 -2
- camel/toolkits/github_toolkit.py +15 -3
- camel/toolkits/memory_toolkit.py +129 -0
- camel/utils/chunker/__init__.py +22 -0
- camel/utils/chunker/base.py +24 -0
- camel/utils/chunker/code_chunker.py +193 -0
- camel/utils/chunker/uio_chunker.py +66 -0
- camel/utils/token_counting.py +133 -0
- {camel_ai-0.2.33.dist-info → camel_ai-0.2.35.dist-info}/METADATA +3 -3
- {camel_ai-0.2.33.dist-info → camel_ai-0.2.35.dist-info}/RECORD +33 -27
- {camel_ai-0.2.33.dist-info → camel_ai-0.2.35.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.33.dist-info → camel_ai-0.2.35.dist-info}/licenses/LICENSE +0 -0
camel/utils/token_counting.py
CHANGED
|
@@ -90,6 +90,30 @@ class BaseTokenCounter(ABC):
|
|
|
90
90
|
"""
|
|
91
91
|
pass
|
|
92
92
|
|
|
93
|
+
@abstractmethod
|
|
94
|
+
def encode(self, text: str) -> List[int]:
|
|
95
|
+
r"""Encode text into token IDs.
|
|
96
|
+
|
|
97
|
+
Args:
|
|
98
|
+
text (str): The text to encode.
|
|
99
|
+
|
|
100
|
+
Returns:
|
|
101
|
+
List[int]: List of token IDs.
|
|
102
|
+
"""
|
|
103
|
+
pass
|
|
104
|
+
|
|
105
|
+
@abstractmethod
|
|
106
|
+
def decode(self, token_ids: List[int]) -> str:
|
|
107
|
+
r"""Decode token IDs back to text.
|
|
108
|
+
|
|
109
|
+
Args:
|
|
110
|
+
token_ids (List[int]): List of token IDs to decode.
|
|
111
|
+
|
|
112
|
+
Returns:
|
|
113
|
+
str: Decoded text.
|
|
114
|
+
"""
|
|
115
|
+
pass
|
|
116
|
+
|
|
93
117
|
|
|
94
118
|
class OpenAITokenCounter(BaseTokenCounter):
|
|
95
119
|
def __init__(self, model: UnifiedModelType):
|
|
@@ -227,6 +251,28 @@ class OpenAITokenCounter(BaseTokenCounter):
|
|
|
227
251
|
total = EXTRA_TOKENS + SQUARE_TOKENS * h * w
|
|
228
252
|
return total
|
|
229
253
|
|
|
254
|
+
def encode(self, text: str) -> List[int]:
|
|
255
|
+
r"""Encode text into token IDs.
|
|
256
|
+
|
|
257
|
+
Args:
|
|
258
|
+
text (str): The text to encode.
|
|
259
|
+
|
|
260
|
+
Returns:
|
|
261
|
+
List[int]: List of token IDs.
|
|
262
|
+
"""
|
|
263
|
+
return self.encoding.encode(text, disallowed_special=())
|
|
264
|
+
|
|
265
|
+
def decode(self, token_ids: List[int]) -> str:
|
|
266
|
+
r"""Decode token IDs back to text.
|
|
267
|
+
|
|
268
|
+
Args:
|
|
269
|
+
token_ids (List[int]): List of token IDs to decode.
|
|
270
|
+
|
|
271
|
+
Returns:
|
|
272
|
+
str: Decoded text.
|
|
273
|
+
"""
|
|
274
|
+
return self.encoding.decode(token_ids)
|
|
275
|
+
|
|
230
276
|
|
|
231
277
|
class AnthropicTokenCounter(BaseTokenCounter):
|
|
232
278
|
@dependencies_required('anthropic')
|
|
@@ -266,6 +312,33 @@ class AnthropicTokenCounter(BaseTokenCounter):
|
|
|
266
312
|
model=self.model,
|
|
267
313
|
).input_tokens
|
|
268
314
|
|
|
315
|
+
def encode(self, text: str) -> List[int]:
|
|
316
|
+
r"""Encode text into token IDs.
|
|
317
|
+
|
|
318
|
+
Args:
|
|
319
|
+
text (str): The text to encode.
|
|
320
|
+
|
|
321
|
+
Returns:
|
|
322
|
+
List[int]: List of token IDs.
|
|
323
|
+
"""
|
|
324
|
+
raise NotImplementedError(
|
|
325
|
+
"The Anthropic API does not provide direct access to token IDs. "
|
|
326
|
+
"Use count_tokens_from_messages() for token counting instead."
|
|
327
|
+
)
|
|
328
|
+
|
|
329
|
+
def decode(self, token_ids: List[int]) -> str:
|
|
330
|
+
r"""Decode token IDs back to text.
|
|
331
|
+
|
|
332
|
+
Args:
|
|
333
|
+
token_ids (List[int]): List of token IDs to decode.
|
|
334
|
+
|
|
335
|
+
Returns:
|
|
336
|
+
str: Decoded text.
|
|
337
|
+
"""
|
|
338
|
+
raise NotImplementedError(
|
|
339
|
+
"The Anthropic API does not provide functionality to decode token IDs."
|
|
340
|
+
)
|
|
341
|
+
|
|
269
342
|
|
|
270
343
|
class LiteLLMTokenCounter(BaseTokenCounter):
|
|
271
344
|
def __init__(self, model_type: UnifiedModelType):
|
|
@@ -319,6 +392,32 @@ class LiteLLMTokenCounter(BaseTokenCounter):
|
|
|
319
392
|
"""
|
|
320
393
|
return self.completion_cost(completion_response=response)
|
|
321
394
|
|
|
395
|
+
def encode(self, text: str) -> List[int]:
|
|
396
|
+
r"""Encode text into token IDs.
|
|
397
|
+
|
|
398
|
+
Args:
|
|
399
|
+
text (str): The text to encode.
|
|
400
|
+
|
|
401
|
+
Returns:
|
|
402
|
+
List[int]: List of token IDs.
|
|
403
|
+
"""
|
|
404
|
+
from litellm import encoding
|
|
405
|
+
|
|
406
|
+
return encoding.encode(text, disallowed_special=())
|
|
407
|
+
|
|
408
|
+
def decode(self, token_ids: List[int]) -> str:
|
|
409
|
+
r"""Decode token IDs back to text.
|
|
410
|
+
|
|
411
|
+
Args:
|
|
412
|
+
token_ids (List[int]): List of token IDs to decode.
|
|
413
|
+
|
|
414
|
+
Returns:
|
|
415
|
+
str: Decoded text.
|
|
416
|
+
"""
|
|
417
|
+
from litellm import encoding
|
|
418
|
+
|
|
419
|
+
return encoding.decode(token_ids)
|
|
420
|
+
|
|
322
421
|
|
|
323
422
|
class MistralTokenCounter(BaseTokenCounter):
|
|
324
423
|
def __init__(self, model_type: ModelType):
|
|
@@ -390,3 +489,37 @@ class MistralTokenCounter(BaseTokenCounter):
|
|
|
390
489
|
)
|
|
391
490
|
|
|
392
491
|
return mistral_request
|
|
492
|
+
|
|
493
|
+
def encode(self, text: str) -> List[int]:
|
|
494
|
+
r"""Encode text into token IDs.
|
|
495
|
+
|
|
496
|
+
Args:
|
|
497
|
+
text (str): The text to encode.
|
|
498
|
+
|
|
499
|
+
Returns:
|
|
500
|
+
List[int]: List of token IDs.
|
|
501
|
+
"""
|
|
502
|
+
# Use the Mistral tokenizer to encode the text
|
|
503
|
+
return self.tokenizer.encode_chat_completion(
|
|
504
|
+
ChatCompletionRequest(
|
|
505
|
+
model=self.model_type,
|
|
506
|
+
messages=[
|
|
507
|
+
{
|
|
508
|
+
"role": "user",
|
|
509
|
+
"content": text,
|
|
510
|
+
}
|
|
511
|
+
],
|
|
512
|
+
)
|
|
513
|
+
)
|
|
514
|
+
|
|
515
|
+
def decode(self, token_ids: List[int]) -> str:
|
|
516
|
+
r"""Decode token IDs back to text.
|
|
517
|
+
|
|
518
|
+
Args:
|
|
519
|
+
token_ids (List[int]): List of token IDs to decode.
|
|
520
|
+
|
|
521
|
+
Returns:
|
|
522
|
+
str: Decoded text.
|
|
523
|
+
"""
|
|
524
|
+
# Use the Mistral tokenizer to decode the tokens
|
|
525
|
+
return self.tokenizer.decode(token_ids)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.35
|
|
4
4
|
Summary: Communicative Agents for AI Society Study
|
|
5
5
|
Project-URL: Homepage, https://www.camel-ai.org/
|
|
6
6
|
Project-URL: Repository, https://github.com/camel-ai/camel
|
|
@@ -458,7 +458,7 @@ Explore different types of agents, their roles, and their applications.
|
|
|
458
458
|
|
|
459
459
|
### Seeking Help
|
|
460
460
|
|
|
461
|
-
Please
|
|
461
|
+
Please reach out to us on [CAMEL discord](https://discord.camel-ai.org/) if you encounter any issue set up CAMEL.
|
|
462
462
|
|
|
463
463
|
<br>
|
|
464
464
|
|
|
@@ -532,7 +532,7 @@ We believe that studying these agents on a large scale offers valuable insights
|
|
|
532
532
|
|
|
533
533
|
<br>
|
|
534
534
|
|
|
535
|
-
##
|
|
535
|
+
## Synthetic Datasets
|
|
536
536
|
|
|
537
537
|
### 1. Utilize Various LLMs as Backends
|
|
538
538
|
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=fXLBdBhuuwQtpOonflAcAvGbr8VA5JDKtM_T7EkZwPo,912
|
|
2
2
|
camel/generators.py,sha256=JRqj9_m1PF4qT6UtybzTQ-KBT9MJQt18OAAYvQ_fr2o,13844
|
|
3
3
|
camel/human.py,sha256=9X09UmxI2JqQnhrFfnZ3B9EzFmVfdSWQcjLWTIXKXe0,4962
|
|
4
4
|
camel/logger.py,sha256=rZVeOVYuQ9RYJ5Tqyv0usqy0g4zaVEq4qSfZ9nd2640,5755
|
|
5
5
|
camel/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
camel/agents/__init__.py,sha256=LcS4m8s97-yADfznvcaAdUe9W0E9h3m6zrSc9H6m9so,1545
|
|
7
|
-
camel/agents/_types.py,sha256=
|
|
8
|
-
camel/agents/_utils.py,sha256=
|
|
7
|
+
camel/agents/_types.py,sha256=ryPRmEXnpNtbFT23GoAcwK-zxWWsIOqYu64mxMx_PhI,1430
|
|
8
|
+
camel/agents/_utils.py,sha256=AR7Qqgbkmn4X2edYUQf1rdksGUyV5hm3iK1z-Dn0Mcg,6266
|
|
9
9
|
camel/agents/base.py,sha256=c4bJYL3G3Z41SaFdMPMn8ZjLdFiFaVOFO6EQIfuCVR8,1124
|
|
10
|
-
camel/agents/chat_agent.py,sha256=
|
|
10
|
+
camel/agents/chat_agent.py,sha256=wbOXI4PiC8296exRTMohlmZY75RORY7SGcTMlcCar6M,51057
|
|
11
11
|
camel/agents/critic_agent.py,sha256=qFVlHlQo0CVgmPWfWYLT8_oP_KyzCLFsQw_nN_vu5Bs,7487
|
|
12
12
|
camel/agents/deductive_reasoner_agent.py,sha256=6BZGaq1hR6hKJuQtOfoYQnk_AkZpw_Mr7mUy2MspQgs,13540
|
|
13
13
|
camel/agents/embodied_agent.py,sha256=XBxBu5ZMmSJ4B2U3Z7SMwvLlgp6yNpaBe8HNQmY9CZA,7536
|
|
14
|
-
camel/agents/knowledge_graph_agent.py,sha256=
|
|
14
|
+
camel/agents/knowledge_graph_agent.py,sha256=7Tchhyvm1s8tQ3at7iGKZt70xWZllRXu2vwUFR37p10,9681
|
|
15
15
|
camel/agents/multi_hop_generator_agent.py,sha256=aYsZNsEFHxIq8_wDN8lZRkvRbfhlOYGBKezWr87y8Bs,4325
|
|
16
16
|
camel/agents/programmed_agent_instruction.py,sha256=99fLe41che3X6wPpNPJXRwl4If6EoQqQVWIoT3DKE1s,7124
|
|
17
17
|
camel/agents/role_assignment_agent.py,sha256=8bkTc14XToFHkP-ZOef5KP0P4hTlCDv0eNsDZPYuukA,5088
|
|
@@ -50,7 +50,7 @@ camel/configs/mistral_config.py,sha256=ul7AAeG3172PtodEEruAZky0OURwgp6YeNq8ma-4o
|
|
|
50
50
|
camel/configs/moonshot_config.py,sha256=IIGeGEAXd4y7FaZ7uNTAAYOYuaBy4YFMusJjuFvfO4w,2779
|
|
51
51
|
camel/configs/nvidia_config.py,sha256=1Oc3tulHOqAfx1mkrEywrxKIV1SBNzPm0CNrWgj9HXo,3226
|
|
52
52
|
camel/configs/ollama_config.py,sha256=oEYSgieliXFyvZWs-de-ZsSZVzhoDUC_oyCx1GW3HYY,4403
|
|
53
|
-
camel/configs/openai_config.py,sha256=
|
|
53
|
+
camel/configs/openai_config.py,sha256=Y0oo7vkMzFMmaps8RXPXwjGzcrtf0ZbzfmgZTHWsBfQ,7242
|
|
54
54
|
camel/configs/qwen_config.py,sha256=qvNGqTuT00aDB2n0MI-YL6GgzbMiH-i6wDy-7lWHHFE,4610
|
|
55
55
|
camel/configs/reka_config.py,sha256=QhTa4hUKz_TF3txTJRNlLSJ391uphEqZOG0zev6bI7w,3498
|
|
56
56
|
camel/configs/samba_config.py,sha256=2__Xj0HIsFWN38rsbZl9a-lXwOO5XHXoo_j7VwiUDpA,8825
|
|
@@ -82,10 +82,11 @@ camel/datahubs/__init__.py,sha256=1a8fRuzgirO2pHtPnuisZ76iF_AN9GxMFq9gwFKWE5I,90
|
|
|
82
82
|
camel/datahubs/base.py,sha256=4QKWiJaeL5ReQpyTAbOtzHs-2CzAYbVyoMngYwdpZGU,4357
|
|
83
83
|
camel/datahubs/huggingface.py,sha256=LgRruML4XnwHrm_jMB-aB-Ha-M9ErRrA7YmiL6saGis,14929
|
|
84
84
|
camel/datahubs/models.py,sha256=tGb9OP_aomIhnwc0VapJjTg9PmyV_QCp5to9sABXF0Y,978
|
|
85
|
-
camel/datasets/__init__.py,sha256=
|
|
86
|
-
camel/datasets/base_generator.py,sha256=
|
|
85
|
+
camel/datasets/__init__.py,sha256=KnAYddFU8Yoi9mLusyn7p9yIbkv7gAxZ_o-q9U1DDb4,963
|
|
86
|
+
camel/datasets/base_generator.py,sha256=N5qKOr1PUsObhuPWgr7qG_9qXi2_nfMfFzAsm2jqByQ,10135
|
|
87
|
+
camel/datasets/few_shot_generator.py,sha256=KpV5ZPHuXxtB2xb0IwHw0hZgAs4-choxx5oyHhdXpmM,9837
|
|
87
88
|
camel/datasets/models.py,sha256=H0ksOfkwiPFjVr9xHMYbVoj8YTTWaLI2GYiWqesmiVs,2228
|
|
88
|
-
camel/datasets/static_dataset.py,sha256=
|
|
89
|
+
camel/datasets/static_dataset.py,sha256=GrszkO6-gKZV8ljIN4k5Y4A1TT8_lB7hJ7SbEEi4zkw,14243
|
|
89
90
|
camel/embeddings/__init__.py,sha256=YKCFO_YVY-x4A4uWmRuoIEtltrilBmC17DkCcK4zSj8,1263
|
|
90
91
|
camel/embeddings/base.py,sha256=mxqFkWh2AfbxuVKPOqVx16fCznmuSh9QXGjaEeZHvoY,2190
|
|
91
92
|
camel/embeddings/jina_embedding.py,sha256=6aakojtsJ6KLp3nqYLhEOtoFm2shoXlRzxb1YYN_uwo,6623
|
|
@@ -120,9 +121,9 @@ camel/loaders/mineru_extractor.py,sha256=nKa5n7f3ergv1TURcbXZJP5mQpnSCIFdlWrxWn4
|
|
|
120
121
|
camel/loaders/panda_reader.py,sha256=7z9mA869LTEI48VhPQc0t2fnIUZc4MGngIXCh6lff18,11361
|
|
121
122
|
camel/loaders/unstructured_io.py,sha256=Dh-MB02nrhVXFyQCUrYt4DATd12zi5bNWE47cPC5yBs,17429
|
|
122
123
|
camel/memories/__init__.py,sha256=JQbs-_7VkcVTjE8y9J0DWI3btDyMRZilTZNVuy_RxZM,1358
|
|
123
|
-
camel/memories/agent_memories.py,sha256=
|
|
124
|
-
camel/memories/base.py,sha256=
|
|
125
|
-
camel/memories/records.py,sha256=
|
|
124
|
+
camel/memories/agent_memories.py,sha256=ImalwrT6gVd1rsUl-xvxK7qprYq_ZaEyUxrlrmNxKp0,9257
|
|
125
|
+
camel/memories/base.py,sha256=3BGuExfwwkbkVpxw1uYms8O37F-PD8ArcmYnFKYUcI4,5652
|
|
126
|
+
camel/memories/records.py,sha256=ySZewkQ4uqBtx3MlqX7xyQyKfL_wudxZSAOqIHzf0vA,4319
|
|
126
127
|
camel/memories/blocks/__init__.py,sha256=ci7_WU11222cNd1Zkv-a0z5E2ux95NMjAYm_cDzF0pE,854
|
|
127
128
|
camel/memories/blocks/chat_history_block.py,sha256=1UqZQwqTYv-dxt_T3v7S9U8MDbhjDHifNvQthMeGY2Y,4965
|
|
128
129
|
camel/memories/blocks/vectordb_block.py,sha256=lf0ipY4cJMB--tQDvpInqsmHZCn7sD1pkmjC70vTtn4,3941
|
|
@@ -160,14 +161,14 @@ camel/models/nemotron_model.py,sha256=jJrW8tpTlEJDT1FjflB9krhgEQhD5KBeLmyUIcZvWP
|
|
|
160
161
|
camel/models/nvidia_model.py,sha256=lqp1iPwVDq6zSQ9B0SyBZ48Z3J5WbXwPshwlhj1ogZ8,6711
|
|
161
162
|
camel/models/ollama_model.py,sha256=byJ0YbMlilEFRKJZIot-MPUcojwMHLIaBES0a1SURtg,10604
|
|
162
163
|
camel/models/openai_audio_models.py,sha256=fYpxFvxT8p93KVb5BYODTuI5wdNXV9pu_bvxfARgVYk,13193
|
|
163
|
-
camel/models/openai_compatible_model.py,sha256=
|
|
164
|
+
camel/models/openai_compatible_model.py,sha256=fy9OSvkCM4YQhsFBBZ6D8lIiaHmCKu8_i26VlIdWwW0,8134
|
|
164
165
|
camel/models/openai_model.py,sha256=CbfD9yVtAltyqdFpjnLXncFnmaGPDZq8JhJDaSfG0pc,10186
|
|
165
166
|
camel/models/qwen_model.py,sha256=_LeeB0yrXRMI-gZOEEOHg0bWNOJpuQHf2G7u40--3r8,7064
|
|
166
167
|
camel/models/reka_model.py,sha256=15DscZf3lbqsIzm6kzjzDrhblBt1_0xlphT4isuQMu0,10146
|
|
167
168
|
camel/models/samba_model.py,sha256=t8b9TA1iVlOUizYSn5NDw4RZWjURqsyd4mkisDXef_s,22558
|
|
168
|
-
camel/models/sglang_model.py,sha256=
|
|
169
|
+
camel/models/sglang_model.py,sha256=6w7lW86EM50g23c5s7da93j6R_eaPGwSsS0s362bOb0,13898
|
|
169
170
|
camel/models/siliconflow_model.py,sha256=c5vk4zAhZVf8pDF1uh-iSa_v8d0QoPLuIN27EemdMGE,5659
|
|
170
|
-
camel/models/stub_model.py,sha256=
|
|
171
|
+
camel/models/stub_model.py,sha256=u-RZPh_MOT3HZswOToDmb8KKtcqYfwrRwHh6AoTEkT0,5905
|
|
171
172
|
camel/models/togetherai_model.py,sha256=-YwZV1S1bkrX8jGguQI5dbtIHVuqhv96MoAcl33ptPo,6657
|
|
172
173
|
camel/models/vllm_model.py,sha256=xhZ2NbPCtgDCxu4QpJ2-Q8klqsqOKfJvFEatmZDwdQY,7706
|
|
173
174
|
camel/models/volcano_model.py,sha256=inYDiKOfGvq8o3XW4KVQIrXiZOhXQfB4HfCHGCWHPKs,3792
|
|
@@ -206,7 +207,7 @@ camel/retrievers/base.py,sha256=Sx66VHuNOJE31u59DX5XBwota4XqubeVm0feqLV7i28,2640
|
|
|
206
207
|
camel/retrievers/bm25_retriever.py,sha256=feQgn3dwnbQG8H7KSbFzjaFAw3KtKObfoyA6gmL836A,5149
|
|
207
208
|
camel/retrievers/cohere_rerank_retriever.py,sha256=tzMS3HG4wD3gbIAVcHsC5fTbFxuiNrT4qJ10oJMJ0BA,4032
|
|
208
209
|
camel/retrievers/hybrid_retrival.py,sha256=2ySeXnLunoBHarqssijjxn7bAQGypAXX6QdzxYstreM,9466
|
|
209
|
-
camel/retrievers/vector_retriever.py,sha256=
|
|
210
|
+
camel/retrievers/vector_retriever.py,sha256=BpOTwBrkhHjUWdfR0dismlUFzOCtBEvUHqEqptKzxr0,11050
|
|
210
211
|
camel/runtime/__init__.py,sha256=QFxG8qYixImqSmC5bLXgT4_gkC5V8nq9dr9XlY4iZZM,1125
|
|
211
212
|
camel/runtime/api.py,sha256=JfkHqQ_Xs3ZNl4TXC_obV3Ymi21ltP1LAkXzBA3H_Lo,3227
|
|
212
213
|
camel/runtime/base.py,sha256=KKBLO6PwWEWBXbYaVtO9JXqBT8110iYpMhgNSIxQvYQ,1512
|
|
@@ -239,10 +240,10 @@ camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6
|
|
|
239
240
|
camel/storages/graph_storages/graph_element.py,sha256=X_2orbQOMaQd00xxzAoJLfEcrVNE1mgCqMJv0orMAKA,2733
|
|
240
241
|
camel/storages/graph_storages/nebula_graph.py,sha256=iLcHrIgd5U59GXlcLtLBAI8vNFpqHHLHHFmHTceVVLc,22816
|
|
241
242
|
camel/storages/graph_storages/neo4j_graph.py,sha256=Ng7fLCUrWhdFAd4d6UEpuAB6B6QgxbHmv8d8XDNOVJc,30773
|
|
242
|
-
camel/storages/key_value_storages/__init__.py,sha256=
|
|
243
|
+
camel/storages/key_value_storages/__init__.py,sha256=P5TpG0Ecwk12bmUjmSOsLGV0uUkpiLNYXJ7cvOdG1ow,1004
|
|
243
244
|
camel/storages/key_value_storages/base.py,sha256=FSfxeLuG7SPvn-Mg-OQxtRKPtQBnRkB7lYeDaFOefpk,2177
|
|
244
245
|
camel/storages/key_value_storages/in_memory.py,sha256=k04Nx53lYxD5MoqDtBEgZrQYkAQ-zIuU6tqnoNqiHws,1949
|
|
245
|
-
camel/storages/key_value_storages/json.py,sha256=
|
|
246
|
+
camel/storages/key_value_storages/json.py,sha256=Jn7-fh2MjSMaVSCCMF_Hu-mAIj6JJ86iwKaSgI-5Uf0,3483
|
|
246
247
|
camel/storages/key_value_storages/redis.py,sha256=Suo7wxxBXFc0fkJ8qSX2xQ26Ik_YhoKWfTOVQKUl5vA,5720
|
|
247
248
|
camel/storages/object_storages/__init__.py,sha256=26yATVTD9yVH-p9KueD30JakstTGiDh89GcFtUNNe4U,915
|
|
248
249
|
camel/storages/object_storages/amazon_s3.py,sha256=9Yvyyyb1LGHxr8REEza7oGopbVtLEfOyXWJc18ZwgqA,7418
|
|
@@ -250,7 +251,7 @@ camel/storages/object_storages/azure_blob.py,sha256=66dHcvjE2ZNdb339oBU6LbFiKzPY
|
|
|
250
251
|
camel/storages/object_storages/base.py,sha256=pImWylYJm7Wt8q87lBE1Cxk26IJ9sRtXq_OJmV6bJlg,3796
|
|
251
252
|
camel/storages/object_storages/google_cloud.py,sha256=59AvGar_GDoGYHhzUi5KBtInv2KaUVnw8SalsL43410,5332
|
|
252
253
|
camel/storages/vectordb_storages/__init__.py,sha256=NCXSLGFE5BuGWDYrsXuiJIsOJObwGnyAzpWuzMoxeWU,1070
|
|
253
|
-
camel/storages/vectordb_storages/base.py,sha256=
|
|
254
|
+
camel/storages/vectordb_storages/base.py,sha256=9pFxeGvQp6wH3VDhJH_uTSDs6s1Tgi--BH2Bomg3qVQ,6738
|
|
254
255
|
camel/storages/vectordb_storages/milvus.py,sha256=XGKSQQflvqvTCo92rrgmbwYtsJKY9JxphdEQqGXf_kA,13483
|
|
255
256
|
camel/storages/vectordb_storages/qdrant.py,sha256=pDkhX3iu1rFCbiMz6F47EhgENCCVDx3ejh-zt988NtU,18011
|
|
256
257
|
camel/tasks/__init__.py,sha256=MuHwkw5GRQc8NOCzj8tjtBrr2Xg9KrcKp-ed_-2ZGIM,906
|
|
@@ -260,7 +261,7 @@ camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls
|
|
|
260
261
|
camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
|
|
261
262
|
camel/terminators/response_terminator.py,sha256=n3G5KP6Oj7-7WlRN0yFcrtLpqAJKaKS0bmhrWlFfCgQ,4982
|
|
262
263
|
camel/terminators/token_limit_terminator.py,sha256=YWv6ZR8R9yI2Qnf_3xES5bEE_O5bb2CxQ0EUXfMh34c,2118
|
|
263
|
-
camel/toolkits/__init__.py,sha256=
|
|
264
|
+
camel/toolkits/__init__.py,sha256=imOSq9b9GI00gQGZwSsDGCB5b3JLAIxL4QmPPbictYQ,3786
|
|
264
265
|
camel/toolkits/arxiv_toolkit.py,sha256=d0Zn8LQGENhtlZ0BHlDr1pUV8xHOc6TOenAaKgbelu8,6279
|
|
265
266
|
camel/toolkits/ask_news_toolkit.py,sha256=PAxio8I2eTau9TgOu1jyFC9fsHhvGb-aLIkroWPtwx4,23268
|
|
266
267
|
camel/toolkits/audio_analysis_toolkit.py,sha256=LC0C6SEIwko8HqkT-C3ub6Ila2PfuIbKLBOEjrrF6BE,8552
|
|
@@ -271,9 +272,9 @@ camel/toolkits/dalle_toolkit.py,sha256=Usmw3JiJErLQgWSB1qKq_bOACNwbUTQPFc_EsVzTr
|
|
|
271
272
|
camel/toolkits/dappier_toolkit.py,sha256=_69IAmXE2QSbwGxnSEycaV2XrrkiM5wKI6heM7-4MfU,8175
|
|
272
273
|
camel/toolkits/data_commons_toolkit.py,sha256=VmDipqHabDdYVCzhuoaPE832i76yXt-uom7p5ObH1w0,14121
|
|
273
274
|
camel/toolkits/excel_toolkit.py,sha256=7ihj4vAmbWA1RFNQb0b5h86HY0cFYLlgX5h6laGCM-E,5908
|
|
274
|
-
camel/toolkits/file_write_toolkit.py,sha256
|
|
275
|
+
camel/toolkits/file_write_toolkit.py,sha256=tz42coCt05WidhzxkMKjjvsoFPV2GQ1bCGqOGUtBRnY,14304
|
|
275
276
|
camel/toolkits/function_tool.py,sha256=9I-7HHGf5TzdQDJce9xyz1tfrGZr5Os5iAopMK4p0XA,30325
|
|
276
|
-
camel/toolkits/github_toolkit.py,sha256=
|
|
277
|
+
camel/toolkits/github_toolkit.py,sha256=5trpfbztCgTVFI6UTWGR2ZnhrE8PKPAb3gIaLgMCrTs,12165
|
|
277
278
|
camel/toolkits/google_maps_toolkit.py,sha256=WTnkURpGri9KcY5OwV7AJJHOzmpu5RNmYE1QCVqvwWM,12023
|
|
278
279
|
camel/toolkits/google_scholar_toolkit.py,sha256=pRFr-GZeGaYARuzbEhg3aDKyzWwAfj02YVp1Y5WOGTQ,7515
|
|
279
280
|
camel/toolkits/human_toolkit.py,sha256=9CjB1flGXIx7mzkIliDjcwXATUvZNdrRCKWyEgR9EJc,1791
|
|
@@ -281,6 +282,7 @@ camel/toolkits/image_analysis_toolkit.py,sha256=dpvT8n49s8B8AhJ8aFdy4OONb8E8r_Cw
|
|
|
281
282
|
camel/toolkits/linkedin_toolkit.py,sha256=5ZSMG01RXjibJ2CtB1vLlQ4B-rv4sqf_2cUZC78WTE8,8041
|
|
282
283
|
camel/toolkits/math_toolkit.py,sha256=5yVF0bKuwkZIV01uICd3TOfktXlTERjKt4DrFyz_oaE,3639
|
|
283
284
|
camel/toolkits/mcp_toolkit.py,sha256=j4twcLhZiEQCAEH0N3eQ_RLqDd59ObH93gyZMes3c84,17787
|
|
285
|
+
camel/toolkits/memory_toolkit.py,sha256=TeKYd5UMwgjVpuS2orb-ocFL13eUNKujvrFOruDCpm8,4436
|
|
284
286
|
camel/toolkits/meshy_toolkit.py,sha256=Fd6sQV2JtduxyvHxCBA0_zl2OCgJRAlvDEe58hX8gRg,6463
|
|
285
287
|
camel/toolkits/mineru_toolkit.py,sha256=vRX9LholLNkpbJ6axfEN4pTG85aWb0PDmlVy3rAAXhg,6868
|
|
286
288
|
camel/toolkits/networkx_toolkit.py,sha256=Zdnk5zmM_xzyoQ0qH0YRu8HY1Y0Uojg69sg1VVBvPcQ,8523
|
|
@@ -340,12 +342,16 @@ camel/utils/commons.py,sha256=DfWCdoW487_FmlTFfdIkDi7wZCEs0jpOWQxfGOHyN28,32891
|
|
|
340
342
|
camel/utils/constants.py,sha256=MQD3bgLIq_NATp0D1iFkrwfkCwVX-PAOSXheTkkEdkY,1410
|
|
341
343
|
camel/utils/deduplication.py,sha256=UHikAtOW1TTDunf2t_wa2kFbmkrXWf7HfOKwLvwCxzo,8958
|
|
342
344
|
camel/utils/response_format.py,sha256=9KrbwtOM9cA3LSjTgLiK7oKy-53_uMh1cvpyNwwJpng,2419
|
|
343
|
-
camel/utils/token_counting.py,sha256=
|
|
345
|
+
camel/utils/token_counting.py,sha256=701LBZqUenw_mmOx5QZGE1kcLOwyHiCI77sdQrGSGGo,17449
|
|
346
|
+
camel/utils/chunker/__init__.py,sha256=6iN6HL6sblIjDuJTILk-9qKcHBZ97t8b6tZCWPZ0OYI,899
|
|
347
|
+
camel/utils/chunker/base.py,sha256=9CuqymFCRncyAdEST-IcRonB732YAPhusznqH-RES3E,960
|
|
348
|
+
camel/utils/chunker/code_chunker.py,sha256=sPpM4_ZA3JDq6dAc0_YWX4C-TU_zaDHMxZiygs3TY3s,7072
|
|
349
|
+
camel/utils/chunker/uio_chunker.py,sha256=BYkA2oKePhTcby6fCMz4yDlOyLJ5lO161kVCqDvjYq4,2621
|
|
344
350
|
camel/verifiers/__init__.py,sha256=p6UEyvaOlwUQaFACGB4C07fL1xSnpTouElt19YRuneQ,937
|
|
345
351
|
camel/verifiers/base.py,sha256=efWZV9g58IHzJ24U4zr109y34CaAi8tV9WZPMCzP3YI,12017
|
|
346
352
|
camel/verifiers/models.py,sha256=hC6m_YxEX-mqi_tkCNZHZWLBWf04ZTyv5vfKR-BEyU4,2818
|
|
347
353
|
camel/verifiers/python_verifier.py,sha256=bj-UGxeJTZzxVVa3a8IEQ1lNOpSaaW3JdGnUEoPeQD0,7519
|
|
348
|
-
camel_ai-0.2.
|
|
349
|
-
camel_ai-0.2.
|
|
350
|
-
camel_ai-0.2.
|
|
351
|
-
camel_ai-0.2.
|
|
354
|
+
camel_ai-0.2.35.dist-info/METADATA,sha256=xHboWfvVZoHZ7V7GOphIyKnsXvO9D5ySSyjHqFno6HU,37943
|
|
355
|
+
camel_ai-0.2.35.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
356
|
+
camel_ai-0.2.35.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
|
|
357
|
+
camel_ai-0.2.35.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|