camel-ai 0.2.71a1__py3-none-any.whl → 0.2.71a3__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 (32) hide show
  1. camel/__init__.py +1 -1
  2. camel/agents/_types.py +6 -2
  3. camel/agents/chat_agent.py +357 -18
  4. camel/messages/base.py +2 -6
  5. camel/messages/func_message.py +32 -5
  6. camel/services/agent_openapi_server.py +380 -0
  7. camel/societies/workforce/single_agent_worker.py +1 -5
  8. camel/societies/workforce/workforce.py +68 -8
  9. camel/tasks/task.py +2 -2
  10. camel/toolkits/__init__.py +2 -2
  11. camel/toolkits/craw4ai_toolkit.py +27 -7
  12. camel/toolkits/file_write_toolkit.py +110 -31
  13. camel/toolkits/human_toolkit.py +19 -14
  14. camel/toolkits/{non_visual_browser_toolkit → hybrid_browser_toolkit}/__init__.py +2 -2
  15. camel/toolkits/{non_visual_browser_toolkit → hybrid_browser_toolkit}/actions.py +47 -11
  16. camel/toolkits/{non_visual_browser_toolkit → hybrid_browser_toolkit}/agent.py +21 -11
  17. camel/toolkits/{non_visual_browser_toolkit/nv_browser_session.py → hybrid_browser_toolkit/browser_session.py} +64 -10
  18. camel/toolkits/hybrid_browser_toolkit/hybrid_browser_toolkit.py +1002 -0
  19. camel/toolkits/{non_visual_browser_toolkit → hybrid_browser_toolkit}/snapshot.py +16 -4
  20. camel/toolkits/{non_visual_browser_toolkit/snapshot.js → hybrid_browser_toolkit/unified_analyzer.js} +171 -15
  21. camel/toolkits/jina_reranker_toolkit.py +3 -4
  22. camel/toolkits/terminal_toolkit.py +189 -48
  23. camel/toolkits/video_download_toolkit.py +1 -2
  24. camel/types/agents/tool_calling_record.py +4 -1
  25. camel/types/enums.py +24 -24
  26. camel/utils/message_summarizer.py +148 -0
  27. camel/utils/tool_result.py +44 -0
  28. {camel_ai-0.2.71a1.dist-info → camel_ai-0.2.71a3.dist-info}/METADATA +19 -5
  29. {camel_ai-0.2.71a1.dist-info → camel_ai-0.2.71a3.dist-info}/RECORD +31 -28
  30. camel/toolkits/non_visual_browser_toolkit/browser_non_visual_toolkit.py +0 -446
  31. {camel_ai-0.2.71a1.dist-info → camel_ai-0.2.71a3.dist-info}/WHEEL +0 -0
  32. {camel_ai-0.2.71a1.dist-info → camel_ai-0.2.71a3.dist-info}/licenses/LICENSE +0 -0
camel/types/enums.py CHANGED
@@ -388,14 +388,14 @@ class ModelType(UnifiedModelType, Enum):
388
388
  WATSONX_MISTRAL_LARGE = "mistralai/mistral-large"
389
389
 
390
390
  # Qianfan models
391
- QIANFAN_ERNIE_X1_TURBO_32K = "ernie-x1-turbo-32k"
392
- QIANFAN_ERNIE_X1_32K = "ernie-x1-32k"
393
- QIANFAN_ERNIE_X1_32K_PREVIEW = "ernie-x1-32k-preview"
394
- QIANFAN_ERNIE_4_5_TURBO_128K = "ernie-4.5-turbo-128k"
395
- QIANFAN_ERNIE_4_5_TURBO_32K = "ernie-4.5-turbo-32k"
396
- QIANFAN_DEEPSEEK_V3 = "deepseek-v3"
397
- QIANFAN_DEEPSEEK_R1 = "deepseek-r1"
398
- QIANFAN_QWEN3_235B_A22B = "qwen3-235b-a22b"
391
+ ERNIE_X1_TURBO_32K = "ernie-x1-turbo-32k"
392
+ ERNIE_X1_32K = "ernie-x1-32k"
393
+ ERNIE_X1_32K_PREVIEW = "ernie-x1-32k-preview"
394
+ ERNIE_4_5_TURBO_128K = "ernie-4.5-turbo-128k"
395
+ ERNIE_4_5_TURBO_32K = "ernie-4.5-turbo-32k"
396
+ DEEPSEEK_V3 = "deepseek-v3"
397
+ DEEPSEEK_R1 = "deepseek-r1"
398
+ QWEN3_235B_A22B = "qwen3-235b-a22b"
399
399
 
400
400
  # Crynux models
401
401
  CRYNUX_DEEPSEEK_R1_DISTILL_QWEN_1_5B = (
@@ -882,14 +882,14 @@ class ModelType(UnifiedModelType, Enum):
882
882
  @property
883
883
  def is_qianfan(self) -> bool:
884
884
  return self in {
885
- ModelType.QIANFAN_ERNIE_X1_TURBO_32K,
886
- ModelType.QIANFAN_ERNIE_X1_32K,
887
- ModelType.QIANFAN_ERNIE_X1_32K_PREVIEW,
888
- ModelType.QIANFAN_ERNIE_4_5_TURBO_128K,
889
- ModelType.QIANFAN_ERNIE_4_5_TURBO_32K,
890
- ModelType.QIANFAN_DEEPSEEK_V3,
891
- ModelType.QIANFAN_DEEPSEEK_R1,
892
- ModelType.QIANFAN_QWEN3_235B_A22B,
885
+ ModelType.ERNIE_X1_TURBO_32K,
886
+ ModelType.ERNIE_X1_32K,
887
+ ModelType.ERNIE_X1_32K_PREVIEW,
888
+ ModelType.ERNIE_4_5_TURBO_128K,
889
+ ModelType.ERNIE_4_5_TURBO_32K,
890
+ ModelType.DEEPSEEK_V3,
891
+ ModelType.DEEPSEEK_R1,
892
+ ModelType.QWEN3_235B_A22B,
893
893
  }
894
894
 
895
895
  @property
@@ -1063,11 +1063,11 @@ class ModelType(UnifiedModelType, Enum):
1063
1063
  ModelType.CRYNUX_QWEN_2_5_7B_INSTRUCT,
1064
1064
  ModelType.CRYNUX_NOUS_HERMES_3_LLAMA_3_1_8B,
1065
1065
  ModelType.CRYNUX_NOUS_HERMES_3_LLAMA_3_2_3B,
1066
- ModelType.QIANFAN_ERNIE_X1_TURBO_32K,
1067
- ModelType.QIANFAN_ERNIE_X1_32K,
1068
- ModelType.QIANFAN_ERNIE_X1_32K_PREVIEW,
1069
- ModelType.QIANFAN_ERNIE_4_5_TURBO_32K,
1070
- ModelType.QIANFAN_QWEN3_235B_A22B,
1066
+ ModelType.ERNIE_X1_TURBO_32K,
1067
+ ModelType.ERNIE_X1_32K,
1068
+ ModelType.ERNIE_X1_32K_PREVIEW,
1069
+ ModelType.ERNIE_4_5_TURBO_32K,
1070
+ ModelType.QWEN3_235B_A22B,
1071
1071
  }:
1072
1072
  return 32_000
1073
1073
  elif self in {
@@ -1148,7 +1148,7 @@ class ModelType(UnifiedModelType, Enum):
1148
1148
  return 65_535
1149
1149
  elif self in {
1150
1150
  ModelType.NOVITA_QWEN_2_5_V1_72B,
1151
- ModelType.QIANFAN_DEEPSEEK_R1,
1151
+ ModelType.DEEPSEEK_R1,
1152
1152
  }:
1153
1153
  return 96_000
1154
1154
  elif self in {
@@ -1203,8 +1203,8 @@ class ModelType(UnifiedModelType, Enum):
1203
1203
  ModelType.NETMIND_DEEPSEEK_V3,
1204
1204
  ModelType.NOVITA_DEEPSEEK_V3_0324,
1205
1205
  ModelType.MISTRAL_MEDIUM_3,
1206
- ModelType.QIANFAN_ERNIE_4_5_TURBO_128K,
1207
- ModelType.QIANFAN_DEEPSEEK_V3,
1206
+ ModelType.ERNIE_4_5_TURBO_128K,
1207
+ ModelType.DEEPSEEK_V3,
1208
1208
  }:
1209
1209
  return 128_000
1210
1210
  elif self in {
@@ -0,0 +1,148 @@
1
+ # ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
2
+ # Licensed under the Apache License, Version 2.0 (the "License");
3
+ # you may not use this file except in compliance with the License.
4
+ # You may obtain a copy of the License at
5
+ #
6
+ # http://www.apache.org/licenses/LICENSE-2.0
7
+ #
8
+ # Unless required by applicable law or agreed to in writing, software
9
+ # distributed under the License is distributed on an "AS IS" BASIS,
10
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ # See the License for the specific language governing permissions and
12
+ # limitations under the License.
13
+ # ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
14
+ from typing import List, Optional
15
+
16
+ from pydantic import BaseModel, Field
17
+
18
+ from camel.agents import ChatAgent
19
+ from camel.messages import BaseMessage
20
+ from camel.models import BaseModelBackend, ModelFactory
21
+ from camel.types import ModelPlatformType, ModelType
22
+
23
+
24
+ class MessageSummary(BaseModel):
25
+ r"""Schema for structured message summaries.
26
+
27
+ Attributes:
28
+ summary (str): A brief, one-sentence summary of the conversation.
29
+ participants (List[str]): The roles of participants involved.
30
+ key_topics_and_entities (List[str]): Important topics, concepts, and
31
+ entities discussed.
32
+ decisions_and_outcomes (List[str]): Key decisions, conclusions, or
33
+ outcomes reached.
34
+ action_items (List[str]): A list of specific tasks or actions to be
35
+ taken, with assignees if mentioned.
36
+ progress_on_main_task (str): A summary of progress made on the
37
+ primary task.
38
+ """
39
+
40
+ summary: str = Field(
41
+ description="A brief, one-sentence summary of the conversation."
42
+ )
43
+ participants: List[str] = Field(
44
+ description="The roles of participants involved."
45
+ )
46
+ key_topics_and_entities: List[str] = Field(
47
+ description="Important topics, concepts, and entities discussed."
48
+ )
49
+ decisions_and_outcomes: List[str] = Field(
50
+ description="Key decisions, conclusions, or outcomes reached."
51
+ )
52
+ action_items: List[str] = Field(
53
+ description=(
54
+ "A list of specific tasks or actions to be taken, with assignees "
55
+ "if mentioned."
56
+ )
57
+ )
58
+ progress_on_main_task: str = Field(
59
+ description="A summary of progress made on the primary task."
60
+ )
61
+
62
+
63
+ class MessageSummarizer:
64
+ r"""Utility class for generating structured summaries of chat messages.
65
+
66
+ Args:
67
+ model_backend (Optional[BaseModelBackend], optional):
68
+ The model backend to use for summarization.
69
+ If not provided, a default model backend will be created.
70
+ """
71
+
72
+ def __init__(
73
+ self,
74
+ model_backend: Optional[BaseModelBackend] = None,
75
+ ):
76
+ if model_backend is None:
77
+ self.model_backend = ModelFactory.create(
78
+ model_platform=ModelPlatformType.DEFAULT,
79
+ model_type=ModelType.GPT_4O_MINI,
80
+ )
81
+ else:
82
+ self.model_backend = model_backend
83
+ self.agent = ChatAgent(
84
+ BaseMessage.make_assistant_message(
85
+ role_name="Message Summarizer",
86
+ content=(
87
+ "You are an expert conversation summarizer. Your task is "
88
+ "to analyze chat messages and create a structured summary "
89
+ "in JSON format. The summary should capture:\n"
90
+ "- summary: A brief, one-sentence summary of the "
91
+ "conversation.\n"
92
+ "- participants: The roles of participants involved.\n"
93
+ "- key_topics_and_entities: Important topics, concepts, "
94
+ "and entities discussed.\n"
95
+ "- decisions_and_outcomes: Key decisions, conclusions, or "
96
+ "outcomes reached.\n"
97
+ "- action_items: A list of specific tasks or actions to "
98
+ "be taken, with assignees if mentioned.\n"
99
+ "- progress_on_main_task: A summary of progress made on "
100
+ "the primary task.\n\n"
101
+ "Your response must be a JSON object that strictly "
102
+ "adheres to this structure. Be concise and accurate."
103
+ ),
104
+ ),
105
+ model=self.model_backend,
106
+ )
107
+
108
+ def summarize(self, messages: List[BaseMessage]) -> MessageSummary:
109
+ r"""Generate a structured summary of the provided messages.
110
+
111
+ Args:
112
+ messages (List[BaseMessage]): List of messages to summarize.
113
+
114
+ Returns:
115
+ MessageSummary: Structured summary of the conversation.
116
+
117
+ Raises:
118
+ ValueError: If the messages list is empty or if the model's
119
+ response cannot be parsed as valid JSON.
120
+ """
121
+ if not messages:
122
+ raise ValueError("Cannot summarize an empty list of messages.")
123
+
124
+ # Construct prompt from messages
125
+ message_text = "\n".join(
126
+ f"{msg.role_name}: {msg.content}" for msg in messages
127
+ )
128
+ prompt = (
129
+ "Please analyze the following chat messages and generate a "
130
+ "structured summary.\n\n"
131
+ f"MESSAGES:\n\"\"\"\n{message_text}\n\"\"\"\n\n"
132
+ "Your response must be a JSON object that strictly adheres to the "
133
+ "required format."
134
+ )
135
+
136
+ # Get structured summary from model with forced JSON response
137
+ response = self.agent.step(prompt, response_format=MessageSummary)
138
+
139
+ if response.msg is None or response.msg.parsed is None:
140
+ raise ValueError(
141
+ "Failed to get a structured summary from the model."
142
+ )
143
+
144
+ summary = response.msg.parsed
145
+ if not isinstance(summary, MessageSummary):
146
+ raise ValueError("The parsed response is not a MessageSummary.")
147
+
148
+ return summary
@@ -0,0 +1,44 @@
1
+ # ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
2
+ # Licensed under the Apache License, Version 2.0 (the "License");
3
+ # you may not use this file except in compliance with the License.
4
+ # You may obtain a copy of the License at
5
+ #
6
+ # http://www.apache.org/licenses/LICENSE-2.0
7
+ #
8
+ # Unless required by applicable law or agreed to in writing, software
9
+ # distributed under the License is distributed on an "AS IS" BASIS,
10
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ # See the License for the specific language governing permissions and
12
+ # limitations under the License.
13
+ # ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
14
+
15
+ from typing import List, Optional
16
+
17
+
18
+ class ToolResult:
19
+ r"""Special result type for tools that can return images along with text.
20
+
21
+ This class is used by ChatAgent to detect when a tool returns visual
22
+ content that should be included in the conversation context.
23
+ """
24
+
25
+ def __init__(self, text: str, images: Optional[List[str]] = None):
26
+ r"""Initialize a tool result.
27
+
28
+ Args:
29
+ text (str): The text description or result of the tool operation.
30
+ images (Optional[List[str]]): List of base64-encoded images to
31
+ include in the conversation context. Images should be encoded
32
+ as "data:image/{format};base64,{data}" format.
33
+ """
34
+ self.text = text
35
+ self.images = images or []
36
+
37
+ def __str__(self) -> str:
38
+ r"""Return the text representation of the result."""
39
+ return self.text
40
+
41
+ def __repr__(self) -> str:
42
+ r"""Return a detailed representation of the result."""
43
+ img_count = len(self.images) if self.images else 0
44
+ return f"ToolResult(text='{self.text[:50]}...', images={img_count})"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: camel-ai
3
- Version: 0.2.71a1
3
+ Version: 0.2.71a3
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
@@ -34,7 +34,7 @@ Requires-Dist: botocore<2,>=1.35.3; extra == 'all'
34
34
  Requires-Dist: chromadb<1.0.0,>=0.6.0; extra == 'all'
35
35
  Requires-Dist: chunkr-ai>=0.0.50; extra == 'all'
36
36
  Requires-Dist: cohere<6,>=5.11.0; extra == 'all'
37
- Requires-Dist: crawl4ai>=0.3.745; extra == 'all'
37
+ Requires-Dist: crawl4ai>=0.4.0; extra == 'all'
38
38
  Requires-Dist: dappier<0.4,>=0.3.3; extra == 'all'
39
39
  Requires-Dist: datacommons-pandas<0.0.4,>=0.0.3; extra == 'all'
40
40
  Requires-Dist: datacommons<2,>=1.4.3; extra == 'all'
@@ -54,7 +54,6 @@ Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'all'
54
54
  Requires-Dist: firecrawl-py<2,>=1.0.0; extra == 'all'
55
55
  Requires-Dist: fish-audio-sdk<2025,>=2024.12.5; extra == 'all'
56
56
  Requires-Dist: flask>=2.0; extra == 'all'
57
- Requires-Dist: fpdf>=1.7.2; extra == 'all'
58
57
  Requires-Dist: google-api-python-client==2.166.0; extra == 'all'
59
58
  Requires-Dist: google-auth-httplib2==0.2.0; extra == 'all'
60
59
  Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'all'
@@ -99,6 +98,7 @@ Requires-Dist: pygithub<3,>=2.6.0; extra == 'all'
99
98
  Requires-Dist: pylatex>=1.4.2; extra == 'all'
100
99
  Requires-Dist: pymilvus<3,>=2.4.0; extra == 'all'
101
100
  Requires-Dist: pymupdf<2,>=1.22.5; extra == 'all'
101
+ Requires-Dist: pymupdf>=1.26.1; extra == 'all'
102
102
  Requires-Dist: pyobvector>=0.1.18; extra == 'all'
103
103
  Requires-Dist: pyowm<4,>=3.3.0; extra == 'all'
104
104
  Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'all'
@@ -206,7 +206,6 @@ Requires-Dist: chunkr-ai>=0.0.50; extra == 'document-tools'
206
206
  Requires-Dist: crawl4ai>=0.3.745; extra == 'document-tools'
207
207
  Requires-Dist: docx2txt<0.9,>=0.8; extra == 'document-tools'
208
208
  Requires-Dist: docx>=0.2.4; extra == 'document-tools'
209
- Requires-Dist: fpdf>=1.7.2; extra == 'document-tools'
210
209
  Requires-Dist: markitdown==0.1.1; extra == 'document-tools'
211
210
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'document-tools'
212
211
  Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'document-tools'
@@ -215,6 +214,7 @@ Requires-Dist: pandasai<3,>=2.3.0; extra == 'document-tools'
215
214
  Requires-Dist: prance<24,>=23.6.21.0; extra == 'document-tools'
216
215
  Requires-Dist: pylatex>=1.4.2; extra == 'document-tools'
217
216
  Requires-Dist: pymupdf<2,>=1.22.5; extra == 'document-tools'
217
+ Requires-Dist: pymupdf>=1.26.1; extra == 'document-tools'
218
218
  Requires-Dist: python-pptx>=1.0.2; extra == 'document-tools'
219
219
  Requires-Dist: tabulate>=0.9.0; extra == 'document-tools'
220
220
  Requires-Dist: unstructured==0.16.20; extra == 'document-tools'
@@ -253,8 +253,8 @@ Requires-Dist: docx2txt<0.9,>=0.8; extra == 'owl'
253
253
  Requires-Dist: docx>=0.2.4; extra == 'owl'
254
254
  Requires-Dist: duckduckgo-search<7,>=6.3.5; extra == 'owl'
255
255
  Requires-Dist: e2b-code-interpreter<2,>=1.0.3; extra == 'owl'
256
+ Requires-Dist: exa-py<2,>=1.10.0; extra == 'owl'
256
257
  Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'owl'
257
- Requires-Dist: fpdf>=1.7.2; extra == 'owl'
258
258
  Requires-Dist: html2text>=2024.2.26; extra == 'owl'
259
259
  Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'owl'
260
260
  Requires-Dist: markitdown==0.1.1; extra == 'owl'
@@ -272,6 +272,7 @@ Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'owl'
272
272
  Requires-Dist: pydub<0.26,>=0.25.1; extra == 'owl'
273
273
  Requires-Dist: pylatex>=1.4.2; extra == 'owl'
274
274
  Requires-Dist: pymupdf<2,>=1.22.5; extra == 'owl'
275
+ Requires-Dist: pymupdf>=1.26.1; extra == 'owl'
275
276
  Requires-Dist: pytesseract>=0.3.13; extra == 'owl'
276
277
  Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'owl'
277
278
  Requires-Dist: python-pptx>=1.0.2; extra == 'owl'
@@ -756,6 +757,19 @@ Practical guides and tutorials for implementing specific functionalities in CAME
756
757
  <br>
757
758
 
758
759
 
760
+ ## 🗓️ Events
761
+
762
+ We are actively involved in community events including:
763
+
764
+ - 🎙️ **Community Meetings** — Weekly virtual syncs with the CAMEL team
765
+ - 🏆 **Competitions** — Hackathons, Bounty Tasks and coding challenges hosted by CAMEL
766
+ - 🤝 **Volunteer Activities** — Contributions, documentation drives, and mentorship
767
+ - 🌍 **Ambassador Programs** — Represent CAMEL in your university or local tech groups
768
+
769
+ > Want to host or participate in a CAMEL event? Join our [Discord](https://discord.com/invite/CNcNpquyDc) or want to be part of [Ambassador Program](https://www.camel-ai.org/ambassador).
770
+
771
+
772
+
759
773
  ## Contributing to CAMEL
760
774
 
761
775
  > For those who'd like to contribute code, we appreciate your interest in contributing to our open-source initiative. Please take a moment to review our [contributing guidelines](https://github.com/camel-ai/camel/blob/master/CONTRIBUTING.md) to get started on a smooth collaboration journey.🚀
@@ -1,13 +1,13 @@
1
- camel/__init__.py,sha256=68LIL5xxwGZbXNGzdkomtyNm1ytDBwGSvZ0_FqIqzvQ,901
1
+ camel/__init__.py,sha256=Xx_Vi3MBcnH09Cz4Uh0KP-x9JhblyfHevUuVU407fNg,901
2
2
  camel/generators.py,sha256=JRqj9_m1PF4qT6UtybzTQ-KBT9MJQt18OAAYvQ_fr2o,13844
3
3
  camel/human.py,sha256=Xg8x1cS5KK4bQ1SDByiHZnzsRpvRP-KZViNvmu38xo4,5475
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=64weKqdvmpZcGWyVkO-OKASAmVUdrQjv60JApgPk_SA,1644
7
- camel/agents/_types.py,sha256=ryPRmEXnpNtbFT23GoAcwK-zxWWsIOqYu64mxMx_PhI,1430
7
+ camel/agents/_types.py,sha256=MeFZzay2kJA6evALQ-MbBTKW-0lu_0wBuKsxzH_4gWI,1552
8
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=4cHBlg2GHR_NCV7WbEGaAIRYLdSIuwqkqs6PCbrJS9E,87440
10
+ camel/agents/chat_agent.py,sha256=Lc_dRkrDfbq1SWD0FDAmBfD96m1EzYv45i-exS6L6h4,101405
11
11
  camel/agents/critic_agent.py,sha256=L6cTbYjyZB0DCa51tQ6LZLA6my8kHLC4nktHySH78H4,10433
12
12
  camel/agents/deductive_reasoner_agent.py,sha256=6BZGaq1hR6hKJuQtOfoYQnk_AkZpw_Mr7mUy2MspQgs,13540
13
13
  camel/agents/embodied_agent.py,sha256=XBxBu5ZMmSJ4B2U3Z7SMwvLlgp6yNpaBe8HNQmY9CZA,7536
@@ -162,8 +162,8 @@ camel/memories/blocks/vectordb_block.py,sha256=r0mRGLV14YUr8aruLdylBjKdSm11oprsi
162
162
  camel/memories/context_creators/__init__.py,sha256=pqzkBM2ro5JZD7RhWg05TjinphhCq0QTIqBJlIL1sJ0,800
163
163
  camel/memories/context_creators/score_based.py,sha256=OQ7eEECkzu4Op5sS9qS1dVgZl-cchSkUZj8Puh8C024,16488
164
164
  camel/messages/__init__.py,sha256=Px-gTFp2Kcgbeb2sZQ_f4tqjoLHE-QEOiMHIMfPrvTw,1949
165
- camel/messages/base.py,sha256=901eWwx-fU_xmInCtVPnXwBbH3vh9lwh4yW1OWujiOY,19762
166
- camel/messages/func_message.py,sha256=2fv35Ruyhhf-wmqtCPiqC-ZujnR-hJH-rEoSgPTKdA8,5959
165
+ camel/messages/base.py,sha256=u67NdYW5G0v-ZgojP8MQpoW5OKP2_AJKEz1JHoRxJ3U,19553
166
+ camel/messages/func_message.py,sha256=7e6HsU2FmiDwxhQCFhUenAhms6s9q22ol2Eg7FJa3yw,6892
167
167
  camel/messages/conversion/__init__.py,sha256=8B4C-0wj-dm925YRKNyx31WYK25PWpME7Q9jPtx2jkY,1047
168
168
  camel/messages/conversion/alpaca.py,sha256=jBU2bMhzNjzptGuoasThYvFov_cYPCYt3pEfs0T7z7U,4163
169
169
  camel/messages/conversion/conversation_models.py,sha256=qTrH62Iem4F_KcxNR6PvfjnrkfVbOyRBhyUgok4EviM,5340
@@ -266,6 +266,7 @@ camel/schemas/__init__.py,sha256=UHt0krcozkPQFqD00q2Vk6hLbwV0ySrgaq17MJEZK1c,863
266
266
  camel/schemas/base.py,sha256=x0H0oIwbQR6UGdEvR5v-srI25MJ8uTrEw8nnygvLwjw,1604
267
267
  camel/schemas/openai_converter.py,sha256=SEnYsYcboZgVmjcC1YP5xke3c0MYPESPRmYQWsDGZ4Y,4362
268
268
  camel/schemas/outlines_converter.py,sha256=OYKPR1fNyrYs9eh5RiXEAccMbnRc9WTwSVJYbh9HkKE,8738
269
+ camel/services/agent_openapi_server.py,sha256=NUCBLNZBvi4C-J1ESMyRHiRX1NDhPdPkXTMJTl0oUQo,14698
269
270
  camel/societies/__init__.py,sha256=NOHjtlsY-gV9UCF2xXgcbG-xXyuigmbwbpLpNsDgEJ4,826
270
271
  camel/societies/babyagi_playing.py,sha256=KbTdpHfZ2V8AripVck0bNTOyF-RSaMPCRARz3DvzWfQ,11855
271
272
  camel/societies/role_playing.py,sha256=0XScr3WfxX1QOC71RhBLmrcS5y2c7DMQB_mAFOHU34M,31421
@@ -273,11 +274,11 @@ camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmX
273
274
  camel/societies/workforce/base.py,sha256=z2DmbTP5LL5-aCAAqglznQqCLfPmnyM5zD3w6jjtsb8,2175
274
275
  camel/societies/workforce/prompts.py,sha256=_l7OUkzH5p7KOd8HMZle9zB9W3jKza_Yb_6elFKiZ2s,11813
275
276
  camel/societies/workforce/role_playing_worker.py,sha256=2W5NEg15ukv2z_KGSufAZznj_g0oecfV1TLP9XYVZlM,7599
276
- camel/societies/workforce/single_agent_worker.py,sha256=mU5CKRctz73xwSBEzfOeBo5NYaE9GxXFU_0Dc__v3wM,14611
277
+ camel/societies/workforce/single_agent_worker.py,sha256=-TJZtRBSUWhu9sGLwbaxHzRmO9YA4L-F0hvq3TgGhg8,14427
277
278
  camel/societies/workforce/task_channel.py,sha256=uqQQI67Tr4awbR4bjZXdx8_4gL6-ON5IjQk_H_ryqT4,7431
278
279
  camel/societies/workforce/utils.py,sha256=Gjlz7pLo4r1b6iNHtlIMxeEuat4d6tEEQMI40JAU3kY,6190
279
280
  camel/societies/workforce/worker.py,sha256=36tkOyz4G2wfBdrFjt9NBPXsx4UbE6uL5on8sP2aoqk,6414
280
- camel/societies/workforce/workforce.py,sha256=HS1zW6k8nhIjCVX0XiLEVCsKookHmtJjvYIuP2Cr7hg,108733
281
+ camel/societies/workforce/workforce.py,sha256=eerfKcP5-3_XOdGXaRpf7U04M_ioZIKHQPPBoo3qh9g,111462
281
282
  camel/societies/workforce/workforce_logger.py,sha256=ihBS0NMigFWjNS3GatFYq_ViPnmYSr2jznOe4VjvxVk,24817
282
283
  camel/storages/__init__.py,sha256=RwpEyvxpMbJzVDZJJygeBg4AzyYMkTjjkfB53hTuqGo,2141
283
284
  camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
@@ -307,13 +308,13 @@ camel/storages/vectordb_storages/qdrant.py,sha256=a_cT0buSCHQ2CPZy852-mdvMDwy5zo
307
308
  camel/storages/vectordb_storages/tidb.py,sha256=w83bxgKgso43MtHqlpf2EMSpn1_Nz6ZZtY4fPw_-vgs,11192
308
309
  camel/storages/vectordb_storages/weaviate.py,sha256=wDUE4KvfmOl3DqHFU4uF0VKbHu-q9vKhZDe8FZ6QXsk,27888
309
310
  camel/tasks/__init__.py,sha256=MuHwkw5GRQc8NOCzj8tjtBrr2Xg9KrcKp-ed_-2ZGIM,906
310
- camel/tasks/task.py,sha256=H47DQxPDWKRFx5McBjWuazjVyC2WaF50w6cW0kZnctI,20302
311
+ camel/tasks/task.py,sha256=lcy1Yz10xqg2kXiwfg4CZbUrYPWdYvETk0-vcoz7zvc,20302
311
312
  camel/tasks/task_prompt.py,sha256=3KZmKYKUPcTKe8EAZOZBN3G05JHRVt7oHY9ORzLVu1g,2150
312
313
  camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls,991
313
314
  camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
314
315
  camel/terminators/response_terminator.py,sha256=n3G5KP6Oj7-7WlRN0yFcrtLpqAJKaKS0bmhrWlFfCgQ,4982
315
316
  camel/terminators/token_limit_terminator.py,sha256=YWv6ZR8R9yI2Qnf_3xES5bEE_O5bb2CxQ0EUXfMh34c,2118
316
- camel/toolkits/__init__.py,sha256=5yiCSYevRW2yufHTk48LGS8J6hm5WviAcTlgKaxAj8o,5444
317
+ camel/toolkits/__init__.py,sha256=KdVeX1CTxQECh6andawWPAbj2C84mDpsLKzHGd1Vtkw,5434
317
318
  camel/toolkits/aci_toolkit.py,sha256=39AsXloBb16hHB7DKi6mFU6NPZ3iVpM2FZgaP4o4eLE,16060
318
319
  camel/toolkits/arxiv_toolkit.py,sha256=mw629nIN_ozaAxNv3nbvhonJKNI2-97ScRCBS3gVqNo,6297
319
320
  camel/toolkits/ask_news_toolkit.py,sha256=WfWaqwEo1Apbil3-Rb5y65Ws43NU4rAFWZu5VHe4los,23448
@@ -324,22 +325,22 @@ camel/toolkits/bohrium_toolkit.py,sha256=453t-m0h0IGjurG6tCHUejGzfRAN2SAkhIoY8V-
324
325
  camel/toolkits/browser_toolkit.py,sha256=Ntn_LmCrhqqIBWq9HtiIKw-M0cL5ebn74Ej1GBoZiC8,44400
325
326
  camel/toolkits/browser_toolkit_commons.py,sha256=uuc1V5tN3YJmTSe6NHAVJqwsL4iYD7IiSZWxPLYW67A,22196
326
327
  camel/toolkits/code_execution.py,sha256=ptexsx8t9teGse8ROnAHCYaLlDg843p-9p1ek-8JpWU,5620
327
- camel/toolkits/craw4ai_toolkit.py,sha256=oJOjErSqMMpVKAtyjL8YmV9hnYl3gnZ2RReiOM4E5Rk,2665
328
+ camel/toolkits/craw4ai_toolkit.py,sha256=FlbRn3nfZ8pcYMQMIA2tCaz6QBmbT-64WbsOJYJ2rPE,3296
328
329
  camel/toolkits/dalle_toolkit.py,sha256=GSnV7reQsVmhMi9sbQy1Ks_5Vs57Dlir_AbT2PPCZwo,6153
329
330
  camel/toolkits/dappier_toolkit.py,sha256=OEHOYXX_oXhgbVtWYAy13nO9uXf9i5qEXSwY4PexNFg,8194
330
331
  camel/toolkits/data_commons_toolkit.py,sha256=aHZUSL1ACpnYGaf1rE2csVKTmXTmN8lMGRUBYhZ_YEk,14168
331
332
  camel/toolkits/edgeone_pages_mcp_toolkit.py,sha256=1TFpAGHUNLggFQeN1OEw7P5laijwnlrCkfxBtgxFuUY,2331
332
333
  camel/toolkits/excel_toolkit.py,sha256=9Uk5GLWl719c4W-NcGPJTNMtodAbEE5gUgLsFkIInbk,32564
333
- camel/toolkits/file_write_toolkit.py,sha256=8G7swo_9EXpbt5IO-hCy-Wf5BPd70ewfpCHqErPsCXU,17072
334
+ camel/toolkits/file_write_toolkit.py,sha256=Wdz0q8z4VQknn538HpwEHCZ_Z3swEeUYEhZ0VVVqT0U,19772
334
335
  camel/toolkits/function_tool.py,sha256=xCDzjxTRCVj_kmbnMFBuwK-3NuzM4JNe_kv9HLtjnIA,33644
335
336
  camel/toolkits/github_toolkit.py,sha256=iUyRrjWGAW_iljZVfNyfkm1Vi55wJxK6PsDAQs9pOag,13099
336
337
  camel/toolkits/google_calendar_toolkit.py,sha256=E-sdgdbtNBs_CXbhht9t1dsVr4DsTr5NguHkx4fvSmc,15410
337
338
  camel/toolkits/google_drive_mcp_toolkit.py,sha256=NubrRdPV8_t8bM4vP-7eKSVMuVwSEBXLfubWR_Hba7k,2583
338
339
  camel/toolkits/google_maps_toolkit.py,sha256=WTnkURpGri9KcY5OwV7AJJHOzmpu5RNmYE1QCVqvwWM,12023
339
340
  camel/toolkits/google_scholar_toolkit.py,sha256=WQ9a0HQr0vro1Uo1m--alCUXvMmaHVKeQYqGCxXc2s8,7562
340
- camel/toolkits/human_toolkit.py,sha256=BMjYEj8Qayx3UJIirHnsEt6xvPslHrYAI6wvg9OV-7g,3264
341
+ camel/toolkits/human_toolkit.py,sha256=KJ4uthCbkxH1cnMVE334hypD6Wsekj2INLajJExFD20,3362
341
342
  camel/toolkits/image_analysis_toolkit.py,sha256=IC36mtytgyMSW20IImIZDgQPsgPxmxZG7qIxO_gIkrs,7647
342
- camel/toolkits/jina_reranker_toolkit.py,sha256=0OWUlSqRNYYmD5EQZW7OX87lfmzLRjjDmHRyqHU6dmU,11963
343
+ camel/toolkits/jina_reranker_toolkit.py,sha256=koTjToI5aPeyQQMJ60a3ikGQJNUQLD834wrg7D2rtK8,11911
343
344
  camel/toolkits/klavis_toolkit.py,sha256=ZKerhgz5e-AV-iv0ftf07HgWikknIHjB3EOQswfuR80,9864
344
345
  camel/toolkits/linkedin_toolkit.py,sha256=wn4eXwYYlVA7doTna7k7WYhUqTBF83W79S-UJs_IQr0,8065
345
346
  camel/toolkits/markitdown_toolkit.py,sha256=7jxPbaE2CIq1FpT41q52Fznw-Gx05ITWn1t9O5IytA4,2867
@@ -368,22 +369,22 @@ camel/toolkits/slack_toolkit.py,sha256=Nb3w-TbUmnUWEvHE9Hbf_wkpSepm_zKQj7m19UyoF
368
369
  camel/toolkits/stripe_toolkit.py,sha256=07swo5znGTnorafC1uYLKB4NRcJIOPOx19J7tkpLYWk,10102
369
370
  camel/toolkits/sympy_toolkit.py,sha256=BAQnI8EFJydNUpKQWXBdleQ1Cm-srDBhFlqp9V9pbPQ,33757
370
371
  camel/toolkits/task_planning_toolkit.py,sha256=Ttw9fHae4omGC1SA-6uaeXVHJ1YkwiVloz_hO-fm1gw,4855
371
- camel/toolkits/terminal_toolkit.py,sha256=3s5cx2lEgwRjx97DDP5LcvNF7j4dxT4PLWcpoq9pZNk,37652
372
+ camel/toolkits/terminal_toolkit.py,sha256=My25eJ2X2y8TMyecWvNCFxsfjPduW2q6sM2rwVS7N2Q,43588
372
373
  camel/toolkits/thinking_toolkit.py,sha256=nZYLvKWIx2BM1DYu69I9B5EISAG7aYcLYXKv9663BVk,8000
373
374
  camel/toolkits/twitter_toolkit.py,sha256=Px4N8aUxUzy01LhGSWkdrC2JgwKkrY3cvxgMeJ2XYfU,15939
374
375
  camel/toolkits/video_analysis_toolkit.py,sha256=Wh08MAVvs3PtgXN88Sk0TXYaGfVmQAol8FPCXMPPpIM,23375
375
- camel/toolkits/video_download_toolkit.py,sha256=4-_kp9IE4HuVxPb3P3ueZYFDH33iMheNo3s3HAhC7MU,7602
376
+ camel/toolkits/video_download_toolkit.py,sha256=OFl6SJbzyak1GDBhvyi1ih28wwJx2WfFccA-2DGoeRU,7578
376
377
  camel/toolkits/weather_toolkit.py,sha256=fs9x9aC38Wsvni6A4PPpbRX6-aBnZiqs2Jix39yoULU,7413
377
378
  camel/toolkits/whatsapp_toolkit.py,sha256=udUQXkXyeWsmrUlOJZsGBhHtc_jhB05Axe_TchhibsU,5760
378
379
  camel/toolkits/wolfram_alpha_toolkit.py,sha256=qeIM8ySn5ilcExBWtx-hDOc35bNcebLVnZ67kt1H3mQ,9295
379
380
  camel/toolkits/zapier_toolkit.py,sha256=A83y1UcfuopH7Fx82pORzypl1StbhBjB2HhyOqYa300,7124
380
- camel/toolkits/non_visual_browser_toolkit/__init__.py,sha256=mXAjf6qkl8BgJrBKPR5d2C3B2m4pOHvq6sRavmgOweA,812
381
- camel/toolkits/non_visual_browser_toolkit/actions.py,sha256=pue7Q5ZGLhqcmbkuahrN_JBYdeV0xtqu9i4gr9mqGWU,7113
382
- camel/toolkits/non_visual_browser_toolkit/agent.py,sha256=y6sAWlPXScVn7f2bPueS8yd8IQ3CkJ0HutP4DChs6P8,10330
383
- camel/toolkits/non_visual_browser_toolkit/browser_non_visual_toolkit.py,sha256=HrKow47ZMq-3dWdC-zz2zWV5ICzt13EOTTrYHCEd0VU,17106
384
- camel/toolkits/non_visual_browser_toolkit/nv_browser_session.py,sha256=vYG4aVyKnQGu0EVfwL6kHXwKHSNlfVJYkkNsozjhk3w,8699
385
- camel/toolkits/non_visual_browser_toolkit/snapshot.js,sha256=67cvZamV85PpWXQ0n2Hml0GKkZhznWz3qH8SP_Xoup4,10531
386
- camel/toolkits/non_visual_browser_toolkit/snapshot.py,sha256=1kbsk0v7fe_PTKzxIADE3Ocjjl6wykxxHLb5HvR0DCc,8092
381
+ camel/toolkits/hybrid_browser_toolkit/__init__.py,sha256=vxjWhq7GjUKE5I9RGQU_GoikZJ-AVK4ertdvEqp9pd0,802
382
+ camel/toolkits/hybrid_browser_toolkit/actions.py,sha256=687NtNdjkx8MfXQRSY7hSUAshZnVBxCbYYHZjnal_Go,8746
383
+ camel/toolkits/hybrid_browser_toolkit/agent.py,sha256=nYTNeLEaPg1bhzl65IcG9JkjiS9cRNV3bjsyct4pzM8,10881
384
+ camel/toolkits/hybrid_browser_toolkit/browser_session.py,sha256=ZbPTKoRJaA4kcd-i9B9J98MEaAgPZ3FGjNzs3IJdoWs,11034
385
+ camel/toolkits/hybrid_browser_toolkit/hybrid_browser_toolkit.py,sha256=xvJGQPnJQC9X9HfTCjCNp7kWWi1Q6mKIFV0ujsLG-10,37913
386
+ camel/toolkits/hybrid_browser_toolkit/snapshot.py,sha256=0gVhOsGujUmv-LdQ5FZGfRNmKaECmJah5W-FOAOu64Q,8489
387
+ camel/toolkits/hybrid_browser_toolkit/unified_analyzer.js,sha256=aVdlR9XszD-Ofisov5T0JGL9IjlNg2PCJaCI5IEbEoA,16369
387
388
  camel/toolkits/open_api_specs/security_config.py,sha256=ZVnBa_zEifaE_ao2xsvV5majuJHpn2Tn7feMDOnj-eo,898
388
389
  camel/toolkits/open_api_specs/biztoc/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
389
390
  camel/toolkits/open_api_specs/biztoc/ai-plugin.json,sha256=IJinQbLv5MFPGFwdN7PbOhwArFVExSEZdJspe-mOBIo,866
@@ -410,12 +411,12 @@ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZ
410
411
  camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
411
412
  camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
412
413
  camel/types/__init__.py,sha256=pFTg3CWGSCfwFdoxPDTf4dKV8DdJS1x-bBPuEOmtdf0,2549
413
- camel/types/enums.py,sha256=FsUh5p4xo_c-h1Z5xzE7HeSue-pYUR7s4zzkYEDRBwI,63014
414
+ camel/types/enums.py,sha256=tUTwrEj5-R6EEXxclxiMkrThLL4SotpYX3saXQI01vo,62822
414
415
  camel/types/mcp_registries.py,sha256=dl4LgYtSaUhsqAKpz28k_SA9La11qxqBvDLaEuyzrFE,4971
415
416
  camel/types/openai_types.py,sha256=8ZFzLe-zGmKNPfuVZFzxlxAX98lGf18gtrPhOgMmzus,2104
416
417
  camel/types/unified_model_type.py,sha256=ZweHiS4MQ1QbDEX3a3oUc-pvgueYP27Zt0SlAPcYg_4,5623
417
418
  camel/types/agents/__init__.py,sha256=cbvVkogPoZgcwZrgxLH6EtpGXk0kavF79nOic0Dc1vg,786
418
- camel/types/agents/tool_calling_record.py,sha256=qa-vLyKvYzWprRkFFl1928xaw9CnfacIebHaqM-oY3s,1814
419
+ camel/types/agents/tool_calling_record.py,sha256=xG0a9TJu-nQQ9aAxpZwYmgqnpjEbnm2cRjjG8uDSIbg,1979
419
420
  camel/utils/__init__.py,sha256=qQeMHZJ8Bbgpm4tBu-LWc_P3iFjXBlVfALdKTiD_s8I,3305
420
421
  camel/utils/async_func.py,sha256=KqoktGSWjZBuAMQ2CV0X6FRgHGlzCKLfeaWvp-f1Qz8,1568
421
422
  camel/utils/commons.py,sha256=hJNvcegHXruFkPaFHh6r9kwHErN9j4vbkLUhSbInbNU,37067
@@ -425,8 +426,10 @@ camel/utils/filename.py,sha256=HYNc1wbSCgNR1CN21cwHxdAhpnsf5ySJ6jUDfeqOK20,2532
425
426
  camel/utils/langfuse.py,sha256=OowR6A790XG-b0UHiTYduYvS18PvSGFdmqki2Poogo0,8578
426
427
  camel/utils/mcp.py,sha256=iuthL8VuUXIRU34Nvx8guq7frfglpZoxewUKuAg3e1s,5077
427
428
  camel/utils/mcp_client.py,sha256=1581sSQKNFxZFq-MvLXRq8jU1HIo3-X3xTfz6hJkKtE,36066
429
+ camel/utils/message_summarizer.py,sha256=7AvPDlevle5uU3mXtfvSFS--nDjp9yqfrf546qTe9rE,5939
428
430
  camel/utils/response_format.py,sha256=xZcx6xBxeg3A0e7R0JCMJdNm2oQ1-diqVLs0JsiCkZU,5319
429
431
  camel/utils/token_counting.py,sha256=apkERzNoVc4sgvJvWVosvepX3KH8pVypVjrL4AA7RB4,17521
432
+ camel/utils/tool_result.py,sha256=8dyf20_GHKxsHq8e0BmqVff3JZlmT6MV4npKZuXlcTc,1821
430
433
  camel/utils/chunker/__init__.py,sha256=6iN6HL6sblIjDuJTILk-9qKcHBZ97t8b6tZCWPZ0OYI,899
431
434
  camel/utils/chunker/base.py,sha256=9CuqymFCRncyAdEST-IcRonB732YAPhusznqH-RES3E,960
432
435
  camel/utils/chunker/code_chunker.py,sha256=9h4rd39H9ngbOWAjd_12xt-EzVMh0e_fZnC4my8h_Jg,6823
@@ -437,7 +440,7 @@ camel/verifiers/math_verifier.py,sha256=tA1D4S0sm8nsWISevxSN0hvSVtIUpqmJhzqfbuMo
437
440
  camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
438
441
  camel/verifiers/physics_verifier.py,sha256=c1grrRddcrVN7szkxhv2QirwY9viIRSITWeWFF5HmLs,30187
439
442
  camel/verifiers/python_verifier.py,sha256=ogTz77wODfEcDN4tMVtiSkRQyoiZbHPY2fKybn59lHw,20558
440
- camel_ai-0.2.71a1.dist-info/METADATA,sha256=6SM1mT10AceKXI4TD8T4aBzmQR14HBBi2Mv9s9QUgNs,45276
441
- camel_ai-0.2.71a1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
442
- camel_ai-0.2.71a1.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
443
- camel_ai-0.2.71a1.dist-info/RECORD,,
443
+ camel_ai-0.2.71a3.dist-info/METADATA,sha256=tIea5ItJdGIRSE70RXxPtvucOws2qknSnto4scpQKNg,45951
444
+ camel_ai-0.2.71a3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
445
+ camel_ai-0.2.71a3.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
446
+ camel_ai-0.2.71a3.dist-info/RECORD,,