camel-ai 0.2.37__py3-none-any.whl → 0.2.38__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.

Files changed (55) hide show
  1. camel/__init__.py +1 -1
  2. camel/datagen/evol_instruct/__init__.py +20 -0
  3. camel/datagen/evol_instruct/evol_instruct.py +424 -0
  4. camel/datagen/evol_instruct/scorer.py +166 -0
  5. camel/datagen/evol_instruct/templates.py +268 -0
  6. camel/environments/models.py +10 -4
  7. camel/environments/single_step.py +91 -17
  8. camel/interpreters/docker_interpreter.py +1 -1
  9. camel/interpreters/e2b_interpreter.py +1 -1
  10. camel/interpreters/subprocess_interpreter.py +1 -1
  11. camel/loaders/__init__.py +2 -2
  12. camel/loaders/{panda_reader.py → pandas_reader.py} +61 -30
  13. camel/memories/context_creators/score_based.py +198 -67
  14. camel/models/aiml_model.py +9 -3
  15. camel/models/anthropic_model.py +11 -3
  16. camel/models/azure_openai_model.py +9 -3
  17. camel/models/base_audio_model.py +6 -0
  18. camel/models/base_model.py +4 -0
  19. camel/models/deepseek_model.py +9 -3
  20. camel/models/gemini_model.py +9 -3
  21. camel/models/groq_model.py +9 -3
  22. camel/models/internlm_model.py +8 -2
  23. camel/models/model_factory.py +4 -0
  24. camel/models/moonshot_model.py +8 -2
  25. camel/models/nemotron_model.py +9 -3
  26. camel/models/nvidia_model.py +9 -3
  27. camel/models/ollama_model.py +9 -3
  28. camel/models/openai_audio_models.py +5 -3
  29. camel/models/openai_compatible_model.py +9 -3
  30. camel/models/openai_model.py +9 -3
  31. camel/models/openrouter_model.py +9 -3
  32. camel/models/qwen_model.py +9 -3
  33. camel/models/samba_model.py +9 -3
  34. camel/models/sglang_model.py +11 -4
  35. camel/models/siliconflow_model.py +8 -2
  36. camel/models/stub_model.py +2 -1
  37. camel/models/togetherai_model.py +9 -3
  38. camel/models/vllm_model.py +9 -3
  39. camel/models/yi_model.py +9 -3
  40. camel/models/zhipuai_model.py +9 -3
  41. camel/retrievers/auto_retriever.py +14 -0
  42. camel/storages/__init__.py +2 -0
  43. camel/storages/vectordb_storages/__init__.py +2 -0
  44. camel/storages/vectordb_storages/tidb.py +332 -0
  45. camel/toolkits/__init__.py +5 -0
  46. camel/toolkits/browser_toolkit.py +84 -61
  47. camel/toolkits/openai_agent_toolkit.py +131 -0
  48. camel/toolkits/searxng_toolkit.py +207 -0
  49. camel/toolkits/thinking_toolkit.py +168 -12
  50. camel/types/enums.py +1 -0
  51. camel/verifiers/python_verifier.py +12 -4
  52. {camel_ai-0.2.37.dist-info → camel_ai-0.2.38.dist-info}/METADATA +52 -4
  53. {camel_ai-0.2.37.dist-info → camel_ai-0.2.38.dist-info}/RECORD +55 -48
  54. {camel_ai-0.2.37.dist-info → camel_ai-0.2.38.dist-info}/WHEEL +0 -0
  55. {camel_ai-0.2.37.dist-info → camel_ai-0.2.38.dist-info}/licenses/LICENSE +0 -0
@@ -22,11 +22,7 @@ logger = get_logger(__name__)
22
22
 
23
23
 
24
24
  class ThinkingToolkit(BaseToolkit):
25
- r"""A toolkit for recording thoughts during reasoning processes.
26
-
27
- Attributes:
28
- thoughts (List[str]): A list to store the recorded thoughts.
29
- """
25
+ r"""A toolkit for recording thoughts during reasoning processes."""
30
26
 
31
27
  def __init__(
32
28
  self,
@@ -39,36 +35,196 @@ class ThinkingToolkit(BaseToolkit):
39
35
  (default: :obj: `None`)
40
36
  """
41
37
  super().__init__(timeout=timeout)
38
+ self.plans: List[str] = []
39
+ self.hypotheses: List[str] = []
42
40
  self.thoughts: List[str] = []
41
+ self.contemplations: List[str] = []
42
+ self.critiques: List[str] = []
43
+ self.syntheses: List[str] = []
44
+ self.reflections: List[str] = []
45
+
46
+ def plan(self, plan: str) -> str:
47
+ r"""Use the tool to create a plan or strategy.
48
+ This tool is for outlining the approach or steps to be taken before
49
+ starting the actual thinking process.
50
+
51
+ Args:
52
+ plan (str): A forward-looking plan or strategy.
53
+
54
+ Returns:
55
+ str: The recorded plan.
56
+ """
57
+ try:
58
+ logger.debug(f"Plan: {plan}")
59
+ self.plans.append(plan)
60
+ return f"Plan: {plan}"
61
+
62
+ except Exception as e:
63
+ error_msg = f"Error recording plan: {e}"
64
+ logger.error(error_msg)
65
+ return error_msg
66
+
67
+ def hypothesize(self, hypothesis: str) -> str:
68
+ r"""Use the tool to form a hypothesis or make a prediction.
69
+ This tool is for making educated guesses or predictions based on
70
+ the plan, before detailed thinking.
71
+
72
+ Args:
73
+ hypothesis (str): A hypothesis or prediction to test.
74
+
75
+ Returns:
76
+ str: The recorded hypothesis.
77
+ """
78
+ try:
79
+ logger.debug(f"Hypothesis: {hypothesis}")
80
+ if not self.plans:
81
+ return "Consider creating a plan before forming hypotheses."
82
+ self.hypotheses.append(hypothesis)
83
+ return f"Hypothesis: {hypothesis}"
84
+
85
+ except Exception as e:
86
+ error_msg = f"Error recording hypothesis: {e}"
87
+ logger.error(error_msg)
88
+ return error_msg
43
89
 
44
90
  def think(self, thought: str) -> str:
45
91
  r"""Use the tool to think about something.
46
92
  It will not obtain new information or change the database, but just
47
- append the thought to the log. Use it when complex reasoning or some
48
- cache memory is needed.
93
+ append the thought to the log. Use it for initial thoughts and
94
+ observations during the execution of the plan.
49
95
 
50
96
  Args:
51
97
  thought (str): A thought to think about.
52
98
 
53
99
  Returns:
54
- str: The full log of thoughts including the new thought.
100
+ str: The recorded thought.
55
101
  """
56
102
  try:
57
103
  logger.debug(f"Thought: {thought}")
104
+ if not self.plans:
105
+ return (
106
+ "Consider creating a plan before thinking "
107
+ "through the process."
108
+ )
58
109
  self.thoughts.append(thought)
59
-
60
- thoughts = "\n".join([f"- {t}" for t in self.thoughts])
61
- return f"Thoughts:\n{thoughts}"
110
+ return f"Thought: {thought}"
62
111
 
63
112
  except Exception as e:
64
113
  error_msg = f"Error recording thought: {e}"
65
114
  logger.error(error_msg)
66
115
  return error_msg
67
116
 
117
+ def contemplate(self, contemplation: str) -> str:
118
+ r"""Use the tool to deeply contemplate an idea or concept.
119
+ This tool is for deeper, more thorough exploration of thoughts,
120
+ considering multiple perspectives and implications. It's more
121
+ comprehensive than basic thinking but more focused than reflection.
122
+
123
+ Args:
124
+ contemplation (str): A deeper exploration of thoughts or concepts.
125
+
126
+ Returns:
127
+ str: The recorded contemplation.
128
+ """
129
+ try:
130
+ logger.debug(f"Contemplation: {contemplation}")
131
+ if not self.thoughts:
132
+ return (
133
+ "Consider thinking about the topic before "
134
+ "deep contemplation."
135
+ )
136
+ self.contemplations.append(contemplation)
137
+ return f"Contemplation: {contemplation}"
138
+
139
+ except Exception as e:
140
+ error_msg = f"Error recording contemplation: {e}"
141
+ logger.error(error_msg)
142
+ return error_msg
143
+
144
+ def critique(self, critique: str) -> str:
145
+ r"""Use the tool to critically evaluate current thoughts.
146
+ This tool is for identifying potential flaws, biases, or
147
+ weaknesses in the current thinking process.
148
+
149
+ Args:
150
+ critique (str): A critical evaluation of current thoughts.
151
+
152
+ Returns:
153
+ str: The recorded critique.
154
+ """
155
+ try:
156
+ logger.debug(f"Critique: {critique}")
157
+ if not self.contemplations:
158
+ return "Consider contemplating deeply before critiquing."
159
+ self.critiques.append(critique)
160
+ return f"Critique: {critique}"
161
+
162
+ except Exception as e:
163
+ error_msg = f"Error recording critique: {e}"
164
+ logger.error(error_msg)
165
+ return error_msg
166
+
167
+ def synthesize(self, synthesis: str) -> str:
168
+ r"""Use the tool to combine and integrate various thoughts.
169
+ This tool is for bringing together different thoughts, contemplations,
170
+ and critiques into a coherent understanding.
171
+
172
+ Args:
173
+ synthesis (str): An integration of multiple thoughts and insights.
174
+
175
+ Returns:
176
+ str: The recorded synthesis.
177
+ """
178
+ try:
179
+ logger.debug(f"Synthesis: {synthesis}")
180
+ if not self.critiques:
181
+ return "Consider critiquing thoughts before synthesizing."
182
+ self.syntheses.append(synthesis)
183
+ return f"Synthesis: {synthesis}"
184
+
185
+ except Exception as e:
186
+ error_msg = f"Error recording synthesis: {e}"
187
+ logger.error(error_msg)
188
+ return error_msg
189
+
190
+ def reflect(self, reflection: str) -> str:
191
+ r"""Use the tool to reflect on the entire process.
192
+ This tool is for final evaluation of the entire thinking process,
193
+ including plans, hypotheses, thoughts, contemplations, critiques,
194
+ and syntheses.
195
+
196
+ Args:
197
+ reflection (str): A comprehensive reflection on the process.
198
+
199
+ Returns:
200
+ str: The recorded reflection.
201
+ """
202
+ try:
203
+ logger.debug(f"Reflection: {reflection}")
204
+ if not self.syntheses:
205
+ return (
206
+ "Consider synthesizing insights before final reflection."
207
+ )
208
+ self.reflections.append(reflection)
209
+ return f"Reflection: {reflection}"
210
+
211
+ except Exception as e:
212
+ error_msg = f"Error recording reflection: {e}"
213
+ logger.error(error_msg)
214
+ return error_msg
215
+
68
216
  def get_tools(self) -> List[FunctionTool]:
69
217
  r"""Get all tools in the toolkit.
70
218
 
71
219
  Returns:
72
220
  List[FunctionTool]: A list of tools.
73
221
  """
74
- return [FunctionTool(self.think)]
222
+ return [
223
+ FunctionTool(self.plan),
224
+ FunctionTool(self.hypothesize),
225
+ FunctionTool(self.think),
226
+ FunctionTool(self.contemplate),
227
+ FunctionTool(self.critique),
228
+ FunctionTool(self.synthesize),
229
+ FunctionTool(self.reflect),
230
+ ]
camel/types/enums.py CHANGED
@@ -882,6 +882,7 @@ class OpenAIVisionDetailType(Enum):
882
882
  class StorageType(Enum):
883
883
  MILVUS = "milvus"
884
884
  QDRANT = "qdrant"
885
+ TIDB = "tidb"
885
886
 
886
887
 
887
888
  class OpenAPIName(Enum):
@@ -76,8 +76,8 @@ class PythonVerifier(BaseVerifier):
76
76
 
77
77
  async def _setup(self, **kwargs) -> None:
78
78
  r"""Set up a virtual environment and install required packages."""
79
- uv = kwargs.get('uv', False)
80
- if uv or self._is_uv_environment():
79
+ uv = kwargs.get('uv', True)
80
+ if uv and self._is_uv_environment():
81
81
  logger.info("[UV] Detected uv environment. Using uv for setup.")
82
82
  self._setup_with_uv()
83
83
  return
@@ -167,7 +167,11 @@ class PythonVerifier(BaseVerifier):
167
167
  raise
168
168
 
169
169
  if self.required_packages:
170
- venv_python = os.path.join(self.venv_path, self.bin_dir, "python")
170
+ venv_python = os.path.join(
171
+ self.venv_path,
172
+ self.bin_dir,
173
+ "python.exe" if os.name == 'nt' else "python",
174
+ )
171
175
  try:
172
176
  subprocess.run(
173
177
  [
@@ -284,7 +288,11 @@ class PythonVerifier(BaseVerifier):
284
288
 
285
289
  # Otherwise, run the code block,
286
290
  # which should already include a print(...) in the end
287
- venv_python = os.path.join(self.venv_path, self.bin_dir, "python")
291
+ venv_python = os.path.join(
292
+ self.venv_path,
293
+ self.bin_dir,
294
+ "python.exe" if os.name == 'nt' else "python",
295
+ )
288
296
  if not os.path.exists(venv_python):
289
297
  return VerificationResult(
290
298
  status=VerificationOutcome.ERROR,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: camel-ai
3
- Version: 0.2.37
3
+ Version: 0.2.38
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
@@ -14,11 +14,9 @@ Requires-Dist: colorama<0.5,>=0.4.6
14
14
  Requires-Dist: docstring-parser<0.16,>=0.15
15
15
  Requires-Dist: httpx<1.0.0dev,>=0.28.0
16
16
  Requires-Dist: jsonschema<5,>=4
17
- Requires-Dist: numpy~=1.26
18
- Requires-Dist: openai<2,>=1.59.7
17
+ Requires-Dist: openai<2,>=1.68.0
19
18
  Requires-Dist: psutil<6,>=5.9.8
20
19
  Requires-Dist: pydantic<2.10,>=1.9
21
- Requires-Dist: pyyaml<7,>=6.0.2
22
20
  Requires-Dist: tiktoken<0.8,>=0.7.0
23
21
  Provides-Extra: all
24
22
  Requires-Dist: accelerate<0.27,>=0.26.0; extra == 'all'
@@ -67,6 +65,7 @@ Requires-Dist: neo4j<6,>=5.18.0; extra == 'all'
67
65
  Requires-Dist: networkx<4,>=3.4.2; extra == 'all'
68
66
  Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'all'
69
67
  Requires-Dist: notion-client<3,>=2.2.1; extra == 'all'
68
+ Requires-Dist: numpy~=1.26; extra == 'all'
70
69
  Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'all'
71
70
  Requires-Dist: opencv-python<5,>=4; extra == 'all'
72
71
  Requires-Dist: openpyxl>=3.1.5; extra == 'all'
@@ -87,6 +86,7 @@ Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'all'
87
86
  Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'all'
88
87
  Requires-Dist: pytest-cov<5,>=4; extra == 'all'
89
88
  Requires-Dist: pytest<8,>=7; extra == 'all'
89
+ Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'all'
90
90
  Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'all'
91
91
  Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'all'
92
92
  Requires-Dist: redis<6,>=5.0.6; extra == 'all'
@@ -134,6 +134,7 @@ Requires-Dist: aiosqlite<0.21,>=0.20.0; extra == 'data-tools'
134
134
  Requires-Dist: datacommons-pandas<0.0.4,>=0.0.3; extra == 'data-tools'
135
135
  Requires-Dist: datacommons<2,>=1.4.3; extra == 'data-tools'
136
136
  Requires-Dist: networkx<4,>=3.4.2; extra == 'data-tools'
137
+ Requires-Dist: numpy~=1.26; extra == 'data-tools'
137
138
  Requires-Dist: pandas<2,>=1.5.3; extra == 'data-tools'
138
139
  Requires-Dist: rouge<2,>=1.0.1; extra == 'data-tools'
139
140
  Requires-Dist: stripe<12,>=11.3.0; extra == 'data-tools'
@@ -177,6 +178,7 @@ Requires-Dist: beautifulsoup4<5,>=4; extra == 'document-tools'
177
178
  Requires-Dist: docx2txt<0.9,>=0.8; extra == 'document-tools'
178
179
  Requires-Dist: docx>=0.2.4; extra == 'document-tools'
179
180
  Requires-Dist: fpdf>=1.7.2; extra == 'document-tools'
181
+ Requires-Dist: numpy~=1.26; extra == 'document-tools'
180
182
  Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'document-tools'
181
183
  Requires-Dist: openpyxl>=3.1.5; extra == 'document-tools'
182
184
  Requires-Dist: pandasai<3,>=2.3.0; extra == 'document-tools'
@@ -208,12 +210,57 @@ Requires-Dist: fish-audio-sdk<2025,>=2024.12.5; extra == 'model-platforms'
208
210
  Requires-Dist: litellm<2,>=1.38.1; extra == 'model-platforms'
209
211
  Requires-Dist: mistralai<2,>=1.1.0; extra == 'model-platforms'
210
212
  Requires-Dist: reka-api<4,>=3.0.8; extra == 'model-platforms'
213
+ Provides-Extra: owl
214
+ Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'owl'
215
+ Requires-Dist: beautifulsoup4<5,>=4; extra == 'owl'
216
+ Requires-Dist: chunkr-ai>=0.0.41; extra == 'owl'
217
+ Requires-Dist: datasets<4,>=3; extra == 'owl'
218
+ Requires-Dist: docx2txt<0.9,>=0.8; extra == 'owl'
219
+ Requires-Dist: docx>=0.2.4; extra == 'owl'
220
+ Requires-Dist: duckduckgo-search<7,>=6.3.5; extra == 'owl'
221
+ Requires-Dist: e2b-code-interpreter<2,>=1.0.3; extra == 'owl'
222
+ Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'owl'
223
+ Requires-Dist: fpdf>=1.7.2; extra == 'owl'
224
+ Requires-Dist: html2text>=2024.2.26; extra == 'owl'
225
+ Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'owl'
226
+ Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'owl'
227
+ Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'owl'
228
+ Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'owl'
229
+ Requires-Dist: numpy~=1.26; extra == 'owl'
230
+ Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'owl'
231
+ Requires-Dist: opencv-python<5,>=4; extra == 'owl'
232
+ Requires-Dist: openpyxl>=3.1.5; extra == 'owl'
233
+ Requires-Dist: outlines<0.2,>=0.1.7; extra == 'owl'
234
+ Requires-Dist: pandas<2,>=1.5.3; extra == 'owl'
235
+ Requires-Dist: pandasai<3,>=2.3.0; extra == 'owl'
236
+ Requires-Dist: pillow<11.0.0,>=10.1.0; extra == 'owl'
237
+ Requires-Dist: playwright>=1.50.0; extra == 'owl'
238
+ Requires-Dist: prance<24,>=23.6.21.0; extra == 'owl'
239
+ Requires-Dist: pydub<0.26,>=0.25.1; extra == 'owl'
240
+ Requires-Dist: pymupdf<2,>=1.22.5; extra == 'owl'
241
+ Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'owl'
242
+ Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'owl'
243
+ Requires-Dist: rouge<2,>=1.0.1; extra == 'owl'
244
+ Requires-Dist: scenedetect>=0.6.5.2; extra == 'owl'
245
+ Requires-Dist: sentencepiece<0.3,>=0.2; extra == 'owl'
246
+ Requires-Dist: soundfile<0.14,>=0.13; extra == 'owl'
247
+ Requires-Dist: tabulate>=0.9.0; extra == 'owl'
248
+ Requires-Dist: transformers<5,>=4; extra == 'owl'
249
+ Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'owl'
250
+ Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'owl'
251
+ Requires-Dist: typer>=0.15.2; extra == 'owl'
252
+ Requires-Dist: unstructured==0.16.20; extra == 'owl'
253
+ Requires-Dist: wikipedia<2,>=1; extra == 'owl'
254
+ Requires-Dist: xls2xlsx>=0.2.0; extra == 'owl'
255
+ Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'owl'
211
256
  Provides-Extra: rag
212
257
  Requires-Dist: cohere<6,>=5.11.0; extra == 'rag'
213
258
  Requires-Dist: nebula3-python==3.8.2; extra == 'rag'
214
259
  Requires-Dist: neo4j<6,>=5.18.0; extra == 'rag'
260
+ Requires-Dist: numpy~=1.26; extra == 'rag'
215
261
  Requires-Dist: pandasai<3,>=2.3.0; extra == 'rag'
216
262
  Requires-Dist: pymilvus<3,>=2.4.0; extra == 'rag'
263
+ Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'rag'
217
264
  Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'rag'
218
265
  Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'rag'
219
266
  Requires-Dist: sentence-transformers<4,>=3.0.1; extra == 'rag'
@@ -230,6 +277,7 @@ Requires-Dist: mem0ai>=0.1.73; extra == 'storage'
230
277
  Requires-Dist: nebula3-python==3.8.2; extra == 'storage'
231
278
  Requires-Dist: neo4j<6,>=5.18.0; extra == 'storage'
232
279
  Requires-Dist: pymilvus<3,>=2.4.0; extra == 'storage'
280
+ Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'storage'
233
281
  Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'storage'
234
282
  Requires-Dist: redis<6,>=5.0.6; extra == 'storage'
235
283
  Provides-Extra: test
@@ -1,4 +1,4 @@
1
- camel/__init__.py,sha256=HmWBT2uYfLfv9YjjowC8DQO0A7Tc-9OS37dF6ekhLac,912
1
+ camel/__init__.py,sha256=tuX8idaFzfLbyM9iDSkoEtZq8gNRVFvmdWvvq6qTCrk,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
@@ -69,6 +69,10 @@ camel/data_collector/sharegpt_collector.py,sha256=MqsGjkP9jOPuXY2fhN0xQ6HUZM0ZDu
69
69
  camel/datagen/__init__.py,sha256=EPF-eZ4rg7qbeSVZhfQ0iME0WDRSqRwBGbW-s0ZJ2EA,949
70
70
  camel/datagen/cot_datagen.py,sha256=WMw4NhUJVgpWOTvsMaQ1Fk1BYSXLtUlP-00wYPSuK7A,17650
71
71
  camel/datagen/self_improving_cot.py,sha256=4pTT_rsEOXevn3e_BlTpUFYsmDRCvV72sRkcmF-iywI,34284
72
+ camel/datagen/evol_instruct/__init__.py,sha256=cajmED2eAPBUBH4EfabTJsgYehMtsTPwEYHWX-uTXTQ,827
73
+ camel/datagen/evol_instruct/evol_instruct.py,sha256=JEh3w5r0BybElfQgpBwptFSPMx0jfLztm4oSGGrM1Xc,16269
74
+ camel/datagen/evol_instruct/scorer.py,sha256=A2xLoLuNAXXdvQPzv90ugRhsdjdWrV3P3kVXo-TkNhk,6443
75
+ camel/datagen/evol_instruct/templates.py,sha256=flCkRxLjrpL9W3wzFJjroBLwaR55oSQvwU9zko33sno,11790
72
76
  camel/datagen/self_instruct/__init__.py,sha256=kRLWyCF-tGR9KEzpYImpupYvL15LcRfZCHndNu6AvV0,1179
73
77
  camel/datagen/self_instruct/self_instruct.py,sha256=-gs5NJzdlD33caE_z_-NP-NZvSnIbJS-LQASIRBivu0,15969
74
78
  camel/datagen/self_instruct/templates.py,sha256=7YMOUcIig6vLjqSwkWCq8XeRCjWq0Mfyzptn7DOmeAo,19480
@@ -98,29 +102,29 @@ camel/embeddings/openai_embedding.py,sha256=9kJBKUWkjEyxtn50V4MDjuOT2syIwWEnZeEH
98
102
  camel/embeddings/sentence_transformers_embeddings.py,sha256=E7a8lN50CtDBsFO-NOFQ6qfCnbH41O0_kTTg7dG3sOo,2724
99
103
  camel/embeddings/vlm_embedding.py,sha256=HZFdcz1YzkFPzMj45_jaCVmDQJyccoXN561aLWlrYmo,5497
100
104
  camel/environments/__init__.py,sha256=nWFEYK-QcRX0WskLVsXn4iP_pK2liL-iHKG7DSO0zTU,969
101
- camel/environments/models.py,sha256=2gizYiiIvqx0DuxEy3qF3MaxNHt0kU1ri7XnBRWd5G0,3945
105
+ camel/environments/models.py,sha256=LB2v_XVKe-WQs9gqXTbqnpVDW5qbTijcFD8dTmHbIJI,4207
102
106
  camel/environments/multi_step.py,sha256=rEEMMHip5ZVEWpNj7miws5wALlujtUbFZkWDsy7ofHM,8360
103
- camel/environments/single_step.py,sha256=xsFOqhjOaPoxITiX4URFZdlZQ-z7sswuJCAl69xeORk,13283
107
+ camel/environments/single_step.py,sha256=vdDrE1_tplLt1wzoid-0eIO7XLcx7YKaJRnlBcGVw4I,16443
104
108
  camel/extractors/__init__.py,sha256=lgtDl8zWvN826fJVKqRv05w556YZ-EdrHwdzKphywgA,1097
105
109
  camel/extractors/base.py,sha256=3jvuZpq27nlADDCX3GfubOpeb_zt-E9rzxF3x4lYm8s,10404
106
110
  camel/extractors/python_strategies.py,sha256=k8q4BIAhPZnCSN2LqPaZVrhF56y3Y4cZ6ddn79jcIXE,7825
107
111
  camel/interpreters/__init__.py,sha256=NOQUsg7gR84zO8nBXu4JGUatsxSDJqZS6otltjXfop4,1265
108
112
  camel/interpreters/base.py,sha256=F026f2ZnvHwikSMbk6APYNvB9qP4Ye5quSkTbFKV3O0,1898
109
- camel/interpreters/docker_interpreter.py,sha256=K4J49oc-GnMtEKbvn3wNokWgWU97-vRgSfWSNadO9LU,9249
110
- camel/interpreters/e2b_interpreter.py,sha256=UC0en39x705cnnMCX4GxN7Tx0gCpu5yuWOFSBl_TagE,4815
113
+ camel/interpreters/docker_interpreter.py,sha256=05sozSmz_uCh-09-mPuzXrGi2mzhn5D_nAQAP2sQEZo,9250
114
+ camel/interpreters/e2b_interpreter.py,sha256=Le8M1c6_a4GSLMC-fB1EeZdBmUmrcQ3djjYiGstNkII,4816
111
115
  camel/interpreters/internal_python_interpreter.py,sha256=9psFm8mkN5-5WdTW__VBjDoh_u-PCifJMQYeo0DEoZo,22464
112
116
  camel/interpreters/interpreter_error.py,sha256=uEhcmHmmcajt5C9PLeHs21h1fE6cmyt23tCAGie1kTA,880
113
117
  camel/interpreters/ipython_interpreter.py,sha256=-erOR6imuh5pUtpbUYky3zoLDr30Y5E7lm59BwwxzNs,5976
114
- camel/interpreters/subprocess_interpreter.py,sha256=8tNbaQ8PQLy8HT3mrQ-vS93mcqn3O5XHXnS_L02yvh8,16638
118
+ camel/interpreters/subprocess_interpreter.py,sha256=xmACW9SeZ1yLogvD2rX_e63ixNE277XgQ3GaTb0c8KY,16639
115
119
  camel/interpreters/docker/Dockerfile,sha256=6_k33dlpxgf8V9vfywWmjLuOgHmT2s-a8Lb8VbFRv4s,253
116
- camel/loaders/__init__.py,sha256=AJnrCWXkD0he3uJDxs7arMGf8nFqNYz3SK0JagMEO7A,1250
120
+ camel/loaders/__init__.py,sha256=ig4mD9JGLgyGw9-oqQSOT5GXxMYS8O6ECXMpBoKeI1A,1253
117
121
  camel/loaders/apify_reader.py,sha256=oaVjKyNhJhG-hTuIwrpZ2hsB4XTL0M-kUksgSL2R0ck,7952
118
122
  camel/loaders/base_io.py,sha256=zsbdBPHgSPFyQrtiUgAsHvy39QHWUObRYNaVvr-pPk0,10190
119
123
  camel/loaders/chunkr_reader.py,sha256=Vzc0a1ac28DHQ5z40Va4ce2noOxaGnhRi3Clf60R1lc,6140
120
124
  camel/loaders/firecrawl_reader.py,sha256=wCPHEWbfLv_q2x9MdTiSvJ_LDqUPO88lzPf0mmOBsME,5667
121
125
  camel/loaders/jina_url_reader.py,sha256=dL9J5JlsFKEhi4gU_vYIxKvvf_RJ4LY9gG6i8P8JpcA,3601
122
126
  camel/loaders/mineru_extractor.py,sha256=nKa5n7f3ergv1TURcbXZJP5mQpnSCIFdlWrxWn4hBz8,9070
123
- camel/loaders/panda_reader.py,sha256=7z9mA869LTEI48VhPQc0t2fnIUZc4MGngIXCh6lff18,11361
127
+ camel/loaders/pandas_reader.py,sha256=zTVrUWsnR6oeOqeL8KLlnapJeaB4El0wyIrEPY1aLus,11922
124
128
  camel/loaders/unstructured_io.py,sha256=Dh-MB02nrhVXFyQCUrYt4DATd12zi5bNWE47cPC5yBs,17429
125
129
  camel/memories/__init__.py,sha256=JQbs-_7VkcVTjE8y9J0DWI3btDyMRZilTZNVuy_RxZM,1358
126
130
  camel/memories/agent_memories.py,sha256=HysjYAB6srRdb3uE_IXmC94YPZBfGcAUdTlbcbzzLZE,9330
@@ -130,7 +134,7 @@ camel/memories/blocks/__init__.py,sha256=ci7_WU11222cNd1Zkv-a0z5E2ux95NMjAYm_cDz
130
134
  camel/memories/blocks/chat_history_block.py,sha256=5QcyWtLtUDzG62_uYlhoVOoo0ztcWnvv_t5LhbNbqDI,5044
131
135
  camel/memories/blocks/vectordb_block.py,sha256=lf0ipY4cJMB--tQDvpInqsmHZCn7sD1pkmjC70vTtn4,3941
132
136
  camel/memories/context_creators/__init__.py,sha256=pqzkBM2ro5JZD7RhWg05TjinphhCq0QTIqBJlIL1sJ0,800
133
- camel/memories/context_creators/score_based.py,sha256=wNPino1fMS4UwebMGc3lgCa5mdVLIXfN3WMxB8xL-x8,5999
137
+ camel/memories/context_creators/score_based.py,sha256=DSwxjQNMCj6lFfrdN-4cc4RlbiHhfxceXrNtEBtwH9o,10312
134
138
  camel/messages/__init__.py,sha256=Px-gTFp2Kcgbeb2sZQ_f4tqjoLHE-QEOiMHIMfPrvTw,1949
135
139
  camel/messages/base.py,sha256=dY9HVqoVjUDvlNzCHOwcTSbhiPvIi6CINLg8oJ1U5j4,19602
136
140
  camel/messages/func_message.py,sha256=2fv35Ruyhhf-wmqtCPiqC-ZujnR-hJH-rEoSgPTKdA8,5959
@@ -143,40 +147,40 @@ camel/messages/conversion/sharegpt/hermes/__init__.py,sha256=mxuMSm-neaTgInIjYXu
143
147
  camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py,sha256=-9TT8iOQ-ieKSKR_PmJSA5Bi0uBx-qR7WQ6vxuFkorM,4639
144
148
  camel/models/__init__.py,sha256=_GIkcZ_xwLBuQnIm6f0l4Ww8cBOs-PfarMT70omRCWE,2838
145
149
  camel/models/_utils.py,sha256=hob1ehnS5xZitMCdYToHVgaTB55JnaP4_DSWnTEfVsg,2045
146
- camel/models/aiml_model.py,sha256=4FW66DxmVMPWAJckh4UjMM6eD1QNyrAPAPtrpmWxzjc,6524
147
- camel/models/anthropic_model.py,sha256=8XAj9sVaN1X0hvrL9a-qsmkAFWoGe1Ozj5XZsXYe1UI,5894
148
- camel/models/azure_openai_model.py,sha256=l8hqhRQyxtkPR9mUq6fzbeL3ARjGxE8aht_GhiWC-r4,10383
149
- camel/models/base_audio_model.py,sha256=QkLqh0v-5kcE_jwFB5xAgvztAqB2Bot4_iG9sZdcl8A,2986
150
- camel/models/base_model.py,sha256=RolL8fRwVpfz8g9lpb_71h0mYTNl-U63f8KBy6hc3E0,10679
150
+ camel/models/aiml_model.py,sha256=_E9FkUmRcznqXQADJIH6MmCLoNcj8Rf6Zz92vKO1lNs,6916
151
+ camel/models/anthropic_model.py,sha256=XQRisu4O1HEWL9q-mtF73S434PiZLxTUeDkKCNCD53E,6334
152
+ camel/models/azure_openai_model.py,sha256=qg49gZ2NSFfEc8-vAswE54xx29J11bBVb7ugrLcWpio,10775
153
+ camel/models/base_audio_model.py,sha256=_VUWh1L3rh8mldNvM5R6jBOKtvmTeBKJyRxAdPJmPlY,3324
154
+ camel/models/base_model.py,sha256=iobKV-aOjYoomX9Jg-JaXAgwWYOBMrH5co6mivJezO0,10876
151
155
  camel/models/cohere_model.py,sha256=i1GHWp1l9oqbhzCjyaG9njrqLF1__q38OrTWOgChofw,13421
152
- camel/models/deepseek_model.py,sha256=HjFEGhxOuEGYOzE8dbkdJRjtrDIbyUZ9XRPKAgm4UFo,9621
156
+ camel/models/deepseek_model.py,sha256=fKjUuGHqoQmKpu8E9H9JXws5XJi5up6DEax9WPoQu1Q,10013
153
157
  camel/models/fish_audio_model.py,sha256=RCwORRIdCbjZXWWjjctpksPI2DnS0b68JjxunHBQ1xk,5981
154
- camel/models/gemini_model.py,sha256=ax7byBfrJbknZ0yjepbbuFyBfU9D2J1lREp7-mjJnZc,11671
155
- camel/models/groq_model.py,sha256=HfhYt58GtKVcpUSZS_AhqKbSm9ZctPQzwPxNHS7QNi4,7461
156
- camel/models/internlm_model.py,sha256=4nr5LXhxBfOjm-0i65pXyaS0_sT5oAXKXaUfkijAGmQ,5612
158
+ camel/models/gemini_model.py,sha256=D47G9qwnVxEAUI3q-UcQR-MccE-jUc0aoFnUC2eH6C8,12063
159
+ camel/models/groq_model.py,sha256=Mods2h_OrPqJ0m37M8CwOtFZMgjPjvxOR74aHJfCSvw,7853
160
+ camel/models/internlm_model.py,sha256=z6B8XXseqJ3ve3ZucT5kRVOG7GcH5Jcr6BZzeJ9NTYo,5994
157
161
  camel/models/litellm_model.py,sha256=xi4kDd0FKuznKtox8ArsB39u40ueOhcb-CpWv4bcbXw,5544
158
162
  camel/models/mistral_model.py,sha256=OB948fRVnXikVIDO3PqxV0zb_qpwwta0DIW1bbX3SYI,11666
159
- camel/models/model_factory.py,sha256=fgBD5P242PWd7CyhbB1Y7VXY01fIGD_d-8CEJ5f1hes,7035
163
+ camel/models/model_factory.py,sha256=y8Fsd4gLAMgOyPUG6u-Te85XjEdm2KtWiWB51Czf6vs,7235
160
164
  camel/models/model_manager.py,sha256=gfpL-WUxuTXgNeCkIVg8Y0zRvxMqRLX8JGt0XEAPQ8Y,9214
161
- camel/models/moonshot_model.py,sha256=DNZzDYz0AWU1q6pIvbPALqesejoawwuKzeP0_ZbjDSg,6149
162
- camel/models/nemotron_model.py,sha256=jJrW8tpTlEJDT1FjflB9krhgEQhD5KBeLmyUIcZvWPk,3886
163
- camel/models/nvidia_model.py,sha256=lqp1iPwVDq6zSQ9B0SyBZ48Z3J5WbXwPshwlhj1ogZ8,6711
164
- camel/models/ollama_model.py,sha256=byJ0YbMlilEFRKJZIot-MPUcojwMHLIaBES0a1SURtg,10604
165
- camel/models/openai_audio_models.py,sha256=fYpxFvxT8p93KVb5BYODTuI5wdNXV9pu_bvxfARgVYk,13193
166
- camel/models/openai_compatible_model.py,sha256=fy9OSvkCM4YQhsFBBZ6D8lIiaHmCKu8_i26VlIdWwW0,8134
167
- camel/models/openai_model.py,sha256=CbfD9yVtAltyqdFpjnLXncFnmaGPDZq8JhJDaSfG0pc,10186
168
- camel/models/openrouter_model.py,sha256=6tbCyY_lpyFwQzObKvtUskMCUdBLcOiz0l6_6PgpsXg,7557
169
- camel/models/qwen_model.py,sha256=_LeeB0yrXRMI-gZOEEOHg0bWNOJpuQHf2G7u40--3r8,7064
165
+ camel/models/moonshot_model.py,sha256=LdRHcQDdGKQY9LbEmO3LSstcnN788rrd_7PQOGjmiyc,6531
166
+ camel/models/nemotron_model.py,sha256=PnLrr25Ihc_2qD0IQY1Hb01Fb-Mr0ZB4Sl-IzdWxEZQ,4284
167
+ camel/models/nvidia_model.py,sha256=9TPxXBmWF47S4_SdGH7hAuiCgTJ_f8C7AI6qF0hmTtc,7103
168
+ camel/models/ollama_model.py,sha256=jKOuYv5gTmbqPAgzi7N63uYwrLiS7qV7JhrhoKrT-Ug,10996
169
+ camel/models/openai_audio_models.py,sha256=PzwN5iLWhgCOYelFFjGUMrM_WDVrkWNIaNWjyKhIqP8,13342
170
+ camel/models/openai_compatible_model.py,sha256=JkJEu0j5eO_RnNM5zGcOPCTKwfZY84htqR-mLokS6OU,8526
171
+ camel/models/openai_model.py,sha256=yH16hdZxqztBoCUwBaSEE3spa-6xcuyG0QoaOvTntgc,10578
172
+ camel/models/openrouter_model.py,sha256=I-vqFFTRghBBR03Eox-4J7RHtHq_eaFld_SewVZgfgM,7949
173
+ camel/models/qwen_model.py,sha256=WCIrEnZpuh37aZWzogcrDCKRRUa4EaFCClkFCx3TrOI,7456
170
174
  camel/models/reka_model.py,sha256=15DscZf3lbqsIzm6kzjzDrhblBt1_0xlphT4isuQMu0,10146
171
- camel/models/samba_model.py,sha256=t8b9TA1iVlOUizYSn5NDw4RZWjURqsyd4mkisDXef_s,22558
172
- camel/models/sglang_model.py,sha256=6w7lW86EM50g23c5s7da93j6R_eaPGwSsS0s362bOb0,13898
173
- camel/models/siliconflow_model.py,sha256=c5vk4zAhZVf8pDF1uh-iSa_v8d0QoPLuIN27EemdMGE,5659
174
- camel/models/stub_model.py,sha256=u-RZPh_MOT3HZswOToDmb8KKtcqYfwrRwHh6AoTEkT0,5905
175
- camel/models/togetherai_model.py,sha256=-YwZV1S1bkrX8jGguQI5dbtIHVuqhv96MoAcl33ptPo,6657
176
- camel/models/vllm_model.py,sha256=xhZ2NbPCtgDCxu4QpJ2-Q8klqsqOKfJvFEatmZDwdQY,7706
175
+ camel/models/samba_model.py,sha256=tfFqzvbZH3KF25zvnVyaUa3dgfMbfDfNlU-QXg9bdlw,22950
176
+ camel/models/sglang_model.py,sha256=kdF-qShOH4j5lkuC2JEzUByuSoKtCFHdrIpAdbpR2Gg,14310
177
+ camel/models/siliconflow_model.py,sha256=c40e0SQjHUNjr1ttJTTRTylRiNsPK_idP7Pa2iZr36g,6041
178
+ camel/models/stub_model.py,sha256=JvjeEkXS7RMcR_UA_64a3T6S0QALUhOaMQs-aI7Etug,5955
179
+ camel/models/togetherai_model.py,sha256=3_LicQ2F0UAD_C5TzTgwlabTuYJUTuSfn1ccEeTEJpU,7049
180
+ camel/models/vllm_model.py,sha256=Y8BFcNfk3brjg29LlGGX3xsp5uex7Y0RgFl3VkDbRHQ,8098
177
181
  camel/models/volcano_model.py,sha256=inYDiKOfGvq8o3XW4KVQIrXiZOhXQfB4HfCHGCWHPKs,3792
178
- camel/models/yi_model.py,sha256=V4sc9n8MAKVfjGO-NU0I8W4lGKdORSCbMV020SHT3R0,6180
179
- camel/models/zhipuai_model.py,sha256=o3uoTY30p1yUIklvoRMyr8JX39xZ5mLVKSTtUknW8nE,6517
182
+ camel/models/yi_model.py,sha256=sg7qOzvWZlGeKmlvA4kvZSWwMxTBo0-qgvEVjBalXcE,6572
183
+ camel/models/zhipuai_model.py,sha256=yS7JShGEXiuI8N5ehqqE6OwleVU-fhIqKwBn84pq_0M,6909
180
184
  camel/models/reward/__init__.py,sha256=MqPN6wXh7Y1SoeNoFlYaMG6xHzLG0CYsv_3kB2atIQk,984
181
185
  camel/models/reward/base_reward_model.py,sha256=erCmBCl51oFNjEHCXWxdHKIPNVJnQlNGgYBDn2bFD-Q,2064
182
186
  camel/models/reward/evaluator.py,sha256=54ev5MuQ_5Tp0-LGO59EIuIkGrVMbtXXqpBR5Ps9kCM,2426
@@ -205,7 +209,7 @@ camel/prompts/video_description_prompt.py,sha256=t-5B_VlTMEjEoRgziixcZLfxcZR2xu7
205
209
  camel/responses/__init__.py,sha256=8QQ0T0NH16825WYk6S3dCSWsz8hqLEfdPtVHxwNsCRk,789
206
210
  camel/responses/agent_responses.py,sha256=a9c2YeZ21AhZtFYezI-Mn-ILJkNpdgA9elKek-GceuM,1765
207
211
  camel/retrievers/__init__.py,sha256=MkuWD18uPLg78KPugd8ER8FOE4w0GC6UuHyFaqGhu6Y,1140
208
- camel/retrievers/auto_retriever.py,sha256=z0GqfNYuqH1chUYId5EEF4AEPwUVDADjPcRqABw-slU,9853
212
+ camel/retrievers/auto_retriever.py,sha256=AkPooLvYlWQQaLfMj4W21FIHdVWK7lbYcm2CeX--ZPg,10439
209
213
  camel/retrievers/base.py,sha256=Sx66VHuNOJE31u59DX5XBwota4XqubeVm0feqLV7i28,2640
210
214
  camel/retrievers/bm25_retriever.py,sha256=feQgn3dwnbQG8H7KSbFzjaFAw3KtKObfoyA6gmL836A,5149
211
215
  camel/retrievers/cohere_rerank_retriever.py,sha256=tzMS3HG4wD3gbIAVcHsC5fTbFxuiNrT4qJ10oJMJ0BA,4032
@@ -237,7 +241,7 @@ camel/societies/workforce/task_channel.py,sha256=9t5hoinfGYnbRavX4kx34Jk1FOy05Sn
237
241
  camel/societies/workforce/utils.py,sha256=yPbcLx8lNZStl15C4UXRBl5qsTrGA-hiIGynnGi53WQ,2384
238
242
  camel/societies/workforce/worker.py,sha256=Do6FDpEraICQVptBH-LiG5KDYYQzD83sLoYO9J8NAbc,3933
239
243
  camel/societies/workforce/workforce.py,sha256=lflBJO4vBPg_uY7U-O8STxo90c8iwLN9r-rTwHm118g,18104
240
- camel/storages/__init__.py,sha256=ef2s6bdLJ1OJbcCKKTl9aGuXqsaczBXgbVS_yUtPzjw,1691
244
+ camel/storages/__init__.py,sha256=5wH0UVB96UEI-kKOxzS7tatOvOhlaRVJlzIH_jssYao,1758
241
245
  camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
242
246
  camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
243
247
  camel/storages/graph_storages/graph_element.py,sha256=X_2orbQOMaQd00xxzAoJLfEcrVNE1mgCqMJv0orMAKA,2733
@@ -254,10 +258,11 @@ camel/storages/object_storages/amazon_s3.py,sha256=9Yvyyyb1LGHxr8REEza7oGopbVtLE
254
258
  camel/storages/object_storages/azure_blob.py,sha256=66dHcvjE2ZNdb339oBU6LbFiKzPYrnlb4tQ_3m2Yazc,5992
255
259
  camel/storages/object_storages/base.py,sha256=pImWylYJm7Wt8q87lBE1Cxk26IJ9sRtXq_OJmV6bJlg,3796
256
260
  camel/storages/object_storages/google_cloud.py,sha256=59AvGar_GDoGYHhzUi5KBtInv2KaUVnw8SalsL43410,5332
257
- camel/storages/vectordb_storages/__init__.py,sha256=NCXSLGFE5BuGWDYrsXuiJIsOJObwGnyAzpWuzMoxeWU,1070
261
+ camel/storages/vectordb_storages/__init__.py,sha256=ot24A06rjP4EdNB37SBG693FXk77CsLg6bcbWJY8vZU,1119
258
262
  camel/storages/vectordb_storages/base.py,sha256=9pFxeGvQp6wH3VDhJH_uTSDs6s1Tgi--BH2Bomg3qVQ,6738
259
263
  camel/storages/vectordb_storages/milvus.py,sha256=XGKSQQflvqvTCo92rrgmbwYtsJKY9JxphdEQqGXf_kA,13483
260
264
  camel/storages/vectordb_storages/qdrant.py,sha256=3x1ApU3OJld7fIpO8VFL5EeNMtR5H8u49xXGoKEXww0,18017
265
+ camel/storages/vectordb_storages/tidb.py,sha256=w83bxgKgso43MtHqlpf2EMSpn1_Nz6ZZtY4fPw_-vgs,11192
261
266
  camel/tasks/__init__.py,sha256=MuHwkw5GRQc8NOCzj8tjtBrr2Xg9KrcKp-ed_-2ZGIM,906
262
267
  camel/tasks/task.py,sha256=FpYYbxWrAvqFJ4KvbjIn-EnTGpe9u_emSWUpdIuCAZo,13178
263
268
  camel/tasks/task_prompt.py,sha256=3KZmKYKUPcTKe8EAZOZBN3G05JHRVt7oHY9ORzLVu1g,2150
@@ -265,12 +270,12 @@ camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls
265
270
  camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
266
271
  camel/terminators/response_terminator.py,sha256=n3G5KP6Oj7-7WlRN0yFcrtLpqAJKaKS0bmhrWlFfCgQ,4982
267
272
  camel/terminators/token_limit_terminator.py,sha256=YWv6ZR8R9yI2Qnf_3xES5bEE_O5bb2CxQ0EUXfMh34c,2118
268
- camel/toolkits/__init__.py,sha256=UFVKxabJlpLirYgqnlwXOZC_4p62gkPDGcnBA7s63xI,3855
273
+ camel/toolkits/__init__.py,sha256=nKzlhqBt46cLH7t25fek65OLobpK19-_dPNk9Mzp6Xc,4001
269
274
  camel/toolkits/arxiv_toolkit.py,sha256=d0Zn8LQGENhtlZ0BHlDr1pUV8xHOc6TOenAaKgbelu8,6279
270
275
  camel/toolkits/ask_news_toolkit.py,sha256=PAxio8I2eTau9TgOu1jyFC9fsHhvGb-aLIkroWPtwx4,23268
271
276
  camel/toolkits/audio_analysis_toolkit.py,sha256=LC0C6SEIwko8HqkT-C3ub6Ila2PfuIbKLBOEjrrF6BE,8552
272
277
  camel/toolkits/base.py,sha256=7WRovKrz380b25lYdwT-2FCXzS3dkllOjT53hmmCg_I,1999
273
- camel/toolkits/browser_toolkit.py,sha256=OuiwMwTWMGi0qtDjEH4pDlszr274UgtnttkynwjDWoM,54584
278
+ camel/toolkits/browser_toolkit.py,sha256=onPBc1qUIZEL9ktYe0YSljOY77vX8a5C7xxVLaWeOyI,55406
274
279
  camel/toolkits/code_execution.py,sha256=UlkMu6Le38WVJ1IPU8cu9QzXNHBsUBL59tJuCsQJgnk,4578
275
280
  camel/toolkits/dalle_toolkit.py,sha256=Usmw3JiJErLQgWSB1qKq_bOACNwbUTQPFc_EsVzTrGo,5115
276
281
  camel/toolkits/dappier_toolkit.py,sha256=_69IAmXE2QSbwGxnSEycaV2XrrkiM5wKI6heM7-4MfU,8175
@@ -292,18 +297,20 @@ camel/toolkits/mineru_toolkit.py,sha256=vRX9LholLNkpbJ6axfEN4pTG85aWb0PDmlVy3rAA
292
297
  camel/toolkits/networkx_toolkit.py,sha256=Zdnk5zmM_xzyoQ0qH0YRu8HY1Y0Uojg69sg1VVBvPcQ,8523
293
298
  camel/toolkits/notion_toolkit.py,sha256=44TYy_51RhIQVfCuLKMH9U5cmRCzpQNSEN9IbrZlSqU,9590
294
299
  camel/toolkits/open_api_toolkit.py,sha256=Venfq8JwTMQfzRzzB7AYmYUMEX35hW0BjIv_ozFMiNk,23316
300
+ camel/toolkits/openai_agent_toolkit.py,sha256=tFaxRhtpi4Vjag3ydNVN5obb0CKGeqJzf9qqzKRIC9I,4467
295
301
  camel/toolkits/openbb_toolkit.py,sha256=_13onVlXnUz9SZQHkeqQlZpXf1GVWp8BzrCFSK8aCMY,28911
296
302
  camel/toolkits/page_script.js,sha256=gypbuQ_gn_oa3rQDoCN_q-kJ0jND1eSvY-30PufPZmQ,12613
297
303
  camel/toolkits/pubmed_toolkit.py,sha256=vrd5GIhSYt9Z8EHaWkFb0x9i6_TP7pQZc7jlLHSol04,12180
298
304
  camel/toolkits/reddit_toolkit.py,sha256=cTqEq1CRaLq9XxUHkHCmd09tRzb5Mz_bUs2JV58ewrs,8012
299
305
  camel/toolkits/retrieval_toolkit.py,sha256=y_mQtknrSIDDXSyQb-4FY6ahV_mOxkBhDkA2eMIVnz0,3801
300
306
  camel/toolkits/search_toolkit.py,sha256=QIV9scEZbGx2PaAFkM4EDxnAr6gg8fZeKj8TrGlLC-I,38916
307
+ camel/toolkits/searxng_toolkit.py,sha256=h92gfk_0csRds68jrtQTaamy_EJK_lOeWxbL_FJQyAU,7365
301
308
  camel/toolkits/semantic_scholar_toolkit.py,sha256=DlkmHOVZ3KBSlxwxxZxJlA8RprZYpLpIAdZOrPAvAbM,11587
302
309
  camel/toolkits/slack_toolkit.py,sha256=n8cn3kZIc27B-2KMTRK6Nsdan37SwMqBiBi1PMtuUvQ,10744
303
310
  camel/toolkits/stripe_toolkit.py,sha256=taOMTa2P0GVkG5QZdBFL3cAHsSGrLDRrdXlVZ065hio,10078
304
311
  camel/toolkits/sympy_toolkit.py,sha256=XtfZ3RGG-Oma7yS1pKyq3jTrXqq7uLxWE7vD3e-jo4I,33711
305
312
  camel/toolkits/terminal_toolkit.py,sha256=y-6Spdn_58Yrj3Rc5rhCX4vVgZsfm80lnI3fv9kPVUA,15181
306
- camel/toolkits/thinking_toolkit.py,sha256=ORd2WdBSyGwuqSgEjh2iwCBeQrB3_mR-Ehuc2dDVQik,2456
313
+ camel/toolkits/thinking_toolkit.py,sha256=NyA6rDFG-WbCNt7NFODBTpqOIDtP6he6GhnZpPlA2To,8001
307
314
  camel/toolkits/twitter_toolkit.py,sha256=a2OLSJSW2wY7pOwOApb1qchZPXzH22Rbgm9Yd7-7vrA,15826
308
315
  camel/toolkits/video_analysis_toolkit.py,sha256=lDAY6YP1zXykSxt8Qanf0WZR3l1p8c4akKPkaF5R3wU,15064
309
316
  camel/toolkits/video_download_toolkit.py,sha256=XjZICJTOG4dmKxfkHxYxmBMFESsOX51GvTeQXAQslMU,7104
@@ -336,7 +343,7 @@ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZ
336
343
  camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
337
344
  camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
338
345
  camel/types/__init__.py,sha256=VLWhAt857IFct3XepY5BNOIhyhDhfmODTezr9jhO_TI,2251
339
- camel/types/enums.py,sha256=GLlQY8IvVrnzctH_mWN-HXtYeu0Y29RsLwUJ_1_Y7hY,36090
346
+ camel/types/enums.py,sha256=33aY3ls5pJtEeyH5h_8sERwX5jfCclcuPx1Y3tj4uxI,36108
340
347
  camel/types/openai_types.py,sha256=8ZFzLe-zGmKNPfuVZFzxlxAX98lGf18gtrPhOgMmzus,2104
341
348
  camel/types/unified_model_type.py,sha256=z1ze1YD3iI6Agn0vnHQHknJjE-eveVwhe4agGXJKIwE,4396
342
349
  camel/types/agents/__init__.py,sha256=cbvVkogPoZgcwZrgxLH6EtpGXk0kavF79nOic0Dc1vg,786
@@ -355,8 +362,8 @@ camel/utils/chunker/uio_chunker.py,sha256=BYkA2oKePhTcby6fCMz4yDlOyLJ5lO161kVCqD
355
362
  camel/verifiers/__init__.py,sha256=eU4NJYaGltUYorClvxOCgWwHGQTA3gyP9hUthMdOHHo,901
356
363
  camel/verifiers/base.py,sha256=hwjo2BtpqLWcrZeFELvlK5XnfA0VfGRRYWzpmywyGsw,14806
357
364
  camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
358
- camel/verifiers/python_verifier.py,sha256=S4kyB48NwCXTbQI44QjpC-xFvhIYCBBt6EhS9ZyAj9c,18132
359
- camel_ai-0.2.37.dist-info/METADATA,sha256=yC02qIabXLYe0NdmnO_uCshEUX1WAPJO_ceX5wWCOlQ,39350
360
- camel_ai-0.2.37.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
361
- camel_ai-0.2.37.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
362
- camel_ai-0.2.37.dist-info/RECORD,,
365
+ camel/verifiers/python_verifier.py,sha256=BLxIYBUs0G8TUYoCO-UzY_VQBugLJ_Py2TclswX-CGo,18316
366
+ camel_ai-0.2.38.dist-info/METADATA,sha256=BffSufFopcifKrMFZl8gyMyJMsJeQehDRFf5dS-9Skg,41890
367
+ camel_ai-0.2.38.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
368
+ camel_ai-0.2.38.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
369
+ camel_ai-0.2.38.dist-info/RECORD,,