camel-ai 0.1.5.6__py3-none-any.whl → 0.1.6.1__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 (133) hide show
  1. camel/__init__.py +1 -1
  2. camel/agents/chat_agent.py +249 -36
  3. camel/agents/critic_agent.py +18 -2
  4. camel/agents/deductive_reasoner_agent.py +16 -4
  5. camel/agents/embodied_agent.py +20 -6
  6. camel/agents/knowledge_graph_agent.py +24 -5
  7. camel/agents/role_assignment_agent.py +13 -1
  8. camel/agents/search_agent.py +16 -5
  9. camel/agents/task_agent.py +20 -5
  10. camel/configs/__init__.py +11 -9
  11. camel/configs/anthropic_config.py +5 -6
  12. camel/configs/base_config.py +50 -4
  13. camel/configs/gemini_config.py +69 -17
  14. camel/configs/groq_config.py +105 -0
  15. camel/configs/litellm_config.py +2 -8
  16. camel/configs/mistral_config.py +78 -0
  17. camel/configs/ollama_config.py +5 -7
  18. camel/configs/openai_config.py +12 -23
  19. camel/configs/vllm_config.py +102 -0
  20. camel/configs/zhipuai_config.py +5 -11
  21. camel/embeddings/__init__.py +2 -0
  22. camel/embeddings/mistral_embedding.py +89 -0
  23. camel/human.py +1 -1
  24. camel/interpreters/__init__.py +2 -0
  25. camel/interpreters/ipython_interpreter.py +167 -0
  26. camel/loaders/__init__.py +2 -0
  27. camel/loaders/firecrawl_reader.py +213 -0
  28. camel/memories/agent_memories.py +1 -4
  29. camel/memories/blocks/chat_history_block.py +6 -2
  30. camel/memories/blocks/vectordb_block.py +3 -1
  31. camel/memories/context_creators/score_based.py +6 -6
  32. camel/memories/records.py +9 -7
  33. camel/messages/base.py +1 -0
  34. camel/models/__init__.py +8 -0
  35. camel/models/anthropic_model.py +7 -2
  36. camel/models/azure_openai_model.py +152 -0
  37. camel/models/base_model.py +9 -2
  38. camel/models/gemini_model.py +14 -2
  39. camel/models/groq_model.py +131 -0
  40. camel/models/litellm_model.py +26 -4
  41. camel/models/mistral_model.py +169 -0
  42. camel/models/model_factory.py +30 -3
  43. camel/models/ollama_model.py +21 -2
  44. camel/models/open_source_model.py +13 -5
  45. camel/models/openai_model.py +7 -2
  46. camel/models/stub_model.py +4 -4
  47. camel/models/vllm_model.py +138 -0
  48. camel/models/zhipuai_model.py +7 -4
  49. camel/prompts/__init__.py +8 -1
  50. camel/prompts/image_craft.py +34 -0
  51. camel/prompts/multi_condition_image_craft.py +34 -0
  52. camel/prompts/task_prompt_template.py +10 -4
  53. camel/prompts/{descripte_video_prompt.py → video_description_prompt.py} +1 -1
  54. camel/responses/agent_responses.py +4 -3
  55. camel/retrievers/auto_retriever.py +2 -2
  56. camel/societies/babyagi_playing.py +6 -4
  57. camel/societies/role_playing.py +16 -8
  58. camel/storages/graph_storages/graph_element.py +10 -14
  59. camel/storages/graph_storages/neo4j_graph.py +5 -0
  60. camel/storages/vectordb_storages/base.py +24 -13
  61. camel/storages/vectordb_storages/milvus.py +1 -1
  62. camel/storages/vectordb_storages/qdrant.py +2 -3
  63. camel/tasks/__init__.py +22 -0
  64. camel/tasks/task.py +408 -0
  65. camel/tasks/task_prompt.py +65 -0
  66. camel/toolkits/__init__.py +39 -0
  67. camel/toolkits/base.py +4 -2
  68. camel/toolkits/code_execution.py +1 -1
  69. camel/toolkits/dalle_toolkit.py +146 -0
  70. camel/toolkits/github_toolkit.py +19 -34
  71. camel/toolkits/google_maps_toolkit.py +368 -0
  72. camel/toolkits/math_toolkit.py +79 -0
  73. camel/toolkits/open_api_toolkit.py +547 -0
  74. camel/{functions → toolkits}/openai_function.py +2 -7
  75. camel/toolkits/retrieval_toolkit.py +76 -0
  76. camel/toolkits/search_toolkit.py +326 -0
  77. camel/toolkits/slack_toolkit.py +308 -0
  78. camel/toolkits/twitter_toolkit.py +522 -0
  79. camel/toolkits/weather_toolkit.py +173 -0
  80. camel/types/enums.py +154 -35
  81. camel/utils/__init__.py +14 -2
  82. camel/utils/async_func.py +1 -1
  83. camel/utils/commons.py +152 -2
  84. camel/utils/constants.py +3 -0
  85. camel/utils/token_counting.py +148 -40
  86. camel/workforce/__init__.py +23 -0
  87. camel/workforce/base.py +50 -0
  88. camel/workforce/manager_node.py +299 -0
  89. camel/workforce/role_playing_node.py +168 -0
  90. camel/workforce/single_agent_node.py +77 -0
  91. camel/workforce/task_channel.py +173 -0
  92. camel/workforce/utils.py +97 -0
  93. camel/workforce/worker_node.py +115 -0
  94. camel/workforce/workforce.py +49 -0
  95. camel/workforce/workforce_prompt.py +125 -0
  96. {camel_ai-0.1.5.6.dist-info → camel_ai-0.1.6.1.dist-info}/METADATA +45 -3
  97. camel_ai-0.1.6.1.dist-info/RECORD +182 -0
  98. camel/functions/__init__.py +0 -51
  99. camel/functions/google_maps_function.py +0 -335
  100. camel/functions/math_functions.py +0 -61
  101. camel/functions/open_api_function.py +0 -508
  102. camel/functions/retrieval_functions.py +0 -61
  103. camel/functions/search_functions.py +0 -298
  104. camel/functions/slack_functions.py +0 -286
  105. camel/functions/twitter_function.py +0 -479
  106. camel/functions/weather_functions.py +0 -144
  107. camel_ai-0.1.5.6.dist-info/RECORD +0 -157
  108. /camel/{functions → toolkits}/open_api_specs/biztoc/__init__.py +0 -0
  109. /camel/{functions → toolkits}/open_api_specs/biztoc/ai-plugin.json +0 -0
  110. /camel/{functions → toolkits}/open_api_specs/biztoc/openapi.yaml +0 -0
  111. /camel/{functions → toolkits}/open_api_specs/coursera/__init__.py +0 -0
  112. /camel/{functions → toolkits}/open_api_specs/coursera/openapi.yaml +0 -0
  113. /camel/{functions → toolkits}/open_api_specs/create_qr_code/__init__.py +0 -0
  114. /camel/{functions → toolkits}/open_api_specs/create_qr_code/openapi.yaml +0 -0
  115. /camel/{functions → toolkits}/open_api_specs/klarna/__init__.py +0 -0
  116. /camel/{functions → toolkits}/open_api_specs/klarna/openapi.yaml +0 -0
  117. /camel/{functions → toolkits}/open_api_specs/nasa_apod/__init__.py +0 -0
  118. /camel/{functions → toolkits}/open_api_specs/nasa_apod/openapi.yaml +0 -0
  119. /camel/{functions → toolkits}/open_api_specs/outschool/__init__.py +0 -0
  120. /camel/{functions → toolkits}/open_api_specs/outschool/ai-plugin.json +0 -0
  121. /camel/{functions → toolkits}/open_api_specs/outschool/openapi.yaml +0 -0
  122. /camel/{functions → toolkits}/open_api_specs/outschool/paths/__init__.py +0 -0
  123. /camel/{functions → toolkits}/open_api_specs/outschool/paths/get_classes.py +0 -0
  124. /camel/{functions → toolkits}/open_api_specs/outschool/paths/search_teachers.py +0 -0
  125. /camel/{functions → toolkits}/open_api_specs/security_config.py +0 -0
  126. /camel/{functions → toolkits}/open_api_specs/speak/__init__.py +0 -0
  127. /camel/{functions → toolkits}/open_api_specs/speak/openapi.yaml +0 -0
  128. /camel/{functions → toolkits}/open_api_specs/web_scraper/__init__.py +0 -0
  129. /camel/{functions → toolkits}/open_api_specs/web_scraper/ai-plugin.json +0 -0
  130. /camel/{functions → toolkits}/open_api_specs/web_scraper/openapi.yaml +0 -0
  131. /camel/{functions → toolkits}/open_api_specs/web_scraper/paths/__init__.py +0 -0
  132. /camel/{functions → toolkits}/open_api_specs/web_scraper/paths/scraper.py +0 -0
  133. {camel_ai-0.1.5.6.dist-info → camel_ai-0.1.6.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,125 @@
1
+ # =========== Copyright 2023 @ 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 @ CAMEL-AI.org. All Rights Reserved. ===========
14
+ from camel.prompts import TextPrompt
15
+
16
+ # ruff: noqa: E501
17
+ CREATE_NODE_PROMPT = TextPrompt(
18
+ """You need to use the given information to create a new workforce for solving the category of tasks of the given one.
19
+ The content of the given task is:
20
+
21
+ {content}
22
+
23
+ Following is the information of the existing workforces. The format is <ID>: <description>.
24
+
25
+ {child_nodes_info}
26
+
27
+ You must return the following information:
28
+ 1. The role of the agent working in the workforce, e.g. "programmer", "researcher", "product owner". This should be enclosed within the <role></role> tags.
29
+ 2. The system message that will be sent to the agent, enclosed within the <system></system> tags.
30
+ 3. The description of the workforce, enclosed within the <description></description> tags.
31
+
32
+ Also, all of the info should be enclosed within a <workforce> tag. For example:
33
+
34
+ <workforce>
35
+ <role>programmer</role>
36
+ <system>You are a python programmer.</system>
37
+ <description>a python programmer.</description>
38
+ </workforce>
39
+
40
+ You should ensure that the workforce created is capable of solving all the tasks in the same category as the given one, don't make it too specific.
41
+ Also, there should be no big overlap between the new workforce and the existing ones.
42
+ The information returned should be concise and clear. Each pair of tag can only appear once.
43
+ """
44
+ )
45
+
46
+ ASSIGN_TASK_PROMPT = TextPrompt(
47
+ """You need to assign the task to a workforce.
48
+ The content of the task is:
49
+
50
+ {content}
51
+
52
+ Following is the information of the existing workforces. The format is <ID>: <description>.
53
+
54
+ {child_nodes_info}
55
+
56
+ You must return the ID of the workforce that you think is most capable of doing the task. The ID should be enclosed within the <id></id> tags, for example:
57
+
58
+ <id>1</id>
59
+ """
60
+ )
61
+
62
+ PROCESS_TASK_PROMPT = TextPrompt(
63
+ """You need to process the task. It is recommended that tools be actively called when needed.
64
+ The content of the task is:
65
+
66
+ {content}
67
+
68
+ The type of the task is:
69
+
70
+ {type}
71
+
72
+ To process this task, here is some information on several dependent tasks:
73
+
74
+ {dependency_task_info}
75
+
76
+ You must return the result of the given task. The result should be enclosed within the <result></result> tags, for example:
77
+
78
+ <result>Today, you requested information about the current weather conditions. The weather today in New York City is partly cloudy with a high of 75°F (24°C) and a low of 59°F (15°C). There is a 10 percent chance of rain with winds coming from the northeast at 5 mph. Humidity levels are at 60%. It's a perfect day to spend some time outdoors, perhaps in one of the city's beautiful parks.</result>
79
+
80
+ if you are not able to process the task, you need to return <failed></failed> tags.
81
+ """
82
+ )
83
+
84
+
85
+ ROLEPLAY_PROCESS_TASK_PROMPT = TextPrompt(
86
+ """You need to process the task. It is recommended that tools be actively called when needed.
87
+ The content of the task is:
88
+
89
+ {content}
90
+
91
+ The type of the task is:
92
+
93
+ {type}
94
+
95
+ To process this task, here is some information on several dependent tasks:
96
+
97
+ {dependency_task_info}
98
+
99
+ You must return the result of the given task.
100
+
101
+ """
102
+ )
103
+
104
+ # TODO: improve prompt quality
105
+ ROLEPLAY_SUMMERIZE_PROMPT = TextPrompt(
106
+ """You need to process the task.
107
+ The content of the task is:
108
+
109
+ {content}
110
+
111
+ The type of the task is:
112
+
113
+ {type}
114
+
115
+ To process this task, here are the chat history of AI user and AI assistant:
116
+
117
+ {chat_history}
118
+
119
+ You must summerize the chat history of the return the result of the given task. The result should be enclosed within the <result></result> tags, for example:
120
+
121
+ <result>Today, you requested information about the current weather conditions. The weather today in New York City is partly cloudy with a high of 75°F (24°C) and a low of 59°F (15°C). There is a 10 percent chance of rain with winds coming from the northeast at 5 mph. Humidity levels are at 60%. It's a perfect day to spend some time outdoors, perhaps in one of the city's beautiful parks.</result>
122
+
123
+ if you are not able to process the task, you need to return <failed></failed> tags.
124
+ """
125
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: camel-ai
3
- Version: 0.1.5.6
3
+ Version: 0.1.6.1
4
4
  Summary: Communicative Agents for AI Society Study
5
5
  Home-page: https://www.camel-ai.org/
6
6
  License: Apache-2.0
@@ -24,6 +24,7 @@ Provides-Extra: tools
24
24
  Provides-Extra: vector-databases
25
25
  Requires-Dist: PyMuPDF (>=1.22.5,<2.0.0) ; extra == "tools" or extra == "all"
26
26
  Requires-Dist: accelerate (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
27
+ Requires-Dist: agentops (>=0.3.6,<0.4.0) ; extra == "tools" or extra == "all"
27
28
  Requires-Dist: anthropic (>=0.29.0,<0.30.0)
28
29
  Requires-Dist: beautifulsoup4 (>=4,<5) ; extra == "tools" or extra == "all"
29
30
  Requires-Dist: cohere (>=4.56,<5.0) ; extra == "retrievers" or extra == "all"
@@ -36,12 +37,18 @@ Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "tools" or extra == "all"
36
37
  Requires-Dist: docstring-parser (>=0.15,<0.16)
37
38
  Requires-Dist: docx2txt (>=0.8,<0.9) ; extra == "tools" or extra == "all"
38
39
  Requires-Dist: duckduckgo-search (>=6.1.0,<7.0.0) ; extra == "tools" or extra == "all"
40
+ Requires-Dist: eval-type-backport (==0.2.0)
41
+ Requires-Dist: firecrawl-py (>=0.0.20,<0.0.21) ; extra == "tools" or extra == "all"
39
42
  Requires-Dist: google-generativeai (>=0.6.0,<0.7.0) ; extra == "model-platforms" or extra == "all"
40
43
  Requires-Dist: googlemaps (>=4.10.0,<5.0.0) ; extra == "tools" or extra == "all"
44
+ Requires-Dist: groq (>=0.5.0,<0.6.0)
41
45
  Requires-Dist: imageio[pyav] (>=2.34.2,<3.0.0) ; extra == "tools" or extra == "all"
46
+ Requires-Dist: ipykernel (>=6.0.0,<7.0.0)
42
47
  Requires-Dist: jsonschema (>=4,<5)
48
+ Requires-Dist: jupyter_client (>=8.6.2,<9.0.0) ; extra == "tools" or extra == "all"
43
49
  Requires-Dist: litellm (>=1.38.1,<2.0.0) ; extra == "model-platforms" or extra == "all"
44
- Requires-Dist: milvus-lite (>=2.4.0,<=2.4.7)
50
+ Requires-Dist: mistral-common (>=1.3.3,<2.0.0) ; extra == "model-platforms" or extra == "all"
51
+ Requires-Dist: mistralai (>=0.4.2,<0.5.0) ; extra == "model-platforms" or extra == "all"
45
52
  Requires-Dist: mock (>=5,<6) ; extra == "test"
46
53
  Requires-Dist: neo4j (>=5.18.0,<6.0.0) ; extra == "graph-storages" or extra == "all"
47
54
  Requires-Dist: newspaper3k (>=0.2.8,<0.3.0) ; extra == "tools" or extra == "all"
@@ -191,7 +198,7 @@ conda create --name camel python=3.9
191
198
  conda activate camel
192
199
 
193
200
  # Clone github repo
194
- git clone -b v0.1.5.6 https://github.com/camel-ai/camel.git
201
+ git clone -b v0.1.6.1 https://github.com/camel-ai/camel.git
195
202
 
196
203
  # Change directory into project directory
197
204
  cd camel
@@ -317,6 +324,41 @@ Please note that the environment variable is session-specific. If you open a new
317
324
  print(assistant_response.msg.content)
318
325
  ```
319
326
 
327
+ ## Use Open-Source Models as Backends (ex. using vLLM to set Phi-3 locally)
328
+ - [Install vLLM](https://docs.vllm.ai/en/latest/getting_started/installation.html)
329
+ - After setting up vLLM, start an OpenAI compatible server for example by
330
+ ```bash
331
+ python -m vllm.entrypoints.openai.api_server --model microsoft/Phi-3-mini-4k-instruct --api-key vllm --dtype bfloat16
332
+ ```
333
+ - Create and run following script (more details please refer to this [example](https://github.com/camel-ai/camel/blob/master/examples/models/vllm_model_example.py))
334
+ ```python
335
+ from camel.agents import ChatAgent
336
+ from camel.messages import BaseMessage
337
+ from camel.models import ModelFactory
338
+ from camel.types import ModelPlatformType
339
+
340
+ vllm_model = ModelFactory.create(
341
+ model_platform=ModelPlatformType.VLLM,
342
+ model_type="microsoft/Phi-3-mini-4k-instruct",
343
+ url="http://localhost:8000/v1",
344
+ model_config_dict={"temperature": 0.0},
345
+ api_key="vllm",
346
+ )
347
+
348
+ assistant_sys_msg = BaseMessage.make_assistant_message(
349
+ role_name="Assistant",
350
+ content="You are a helpful assistant.",
351
+ )
352
+ agent = ChatAgent(assistant_sys_msg, model=vllm_model, token_limit=4096)
353
+
354
+ user_msg = BaseMessage.make_user_message(
355
+ role_name="User",
356
+ content="Say hi to CAMEL AI",
357
+ )
358
+ assistant_response = agent.step(user_msg)
359
+ print(assistant_response.msg.content)
360
+ ```
361
+
320
362
  ## Data (Hosted on Hugging Face)
321
363
  | Dataset | Chat format | Instruction format | Chat format (translated) |
322
364
  |----------------|-----------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
@@ -0,0 +1,182 @@
1
+ camel/__init__.py,sha256=tSbN4cmxPRUQRhoSLga0A7TCIcO0pr0vcwnF-wqA8BI,780
2
+ camel/agents/__init__.py,sha256=SSU1wbhZXWwQnE0rRxkpyN57kEu72KklsZNcdLkXfTs,1551
3
+ camel/agents/base.py,sha256=X39qWSiT1WnDqaJ9k3gQrTpOQSwUKzNEVpp5AY6fDH8,1130
4
+ camel/agents/chat_agent.py,sha256=eFOy2maOh08-oj67P22XVSHIM7TdJW4pQ-ssubv-GAw,36141
5
+ camel/agents/critic_agent.py,sha256=j0X31Jzz2JwfAfTGfXLFKCAXhRdcXMao8GxlY63mEq4,7461
6
+ camel/agents/deductive_reasoner_agent.py,sha256=AvUwgSNWfhVsQL1MnJrwQ13NW9lRE7XSlGXozpyENqE,13397
7
+ camel/agents/embodied_agent.py,sha256=zyHe9bWLZXJHdEO3A2DNY0VDpFwN_ONx1cZr0OeEhJE,7466
8
+ camel/agents/knowledge_graph_agent.py,sha256=2W8GgFOjHjwXlvEYtLoGKYV718yj6iLYKbBOdFZ6Myg,8935
9
+ camel/agents/role_assignment_agent.py,sha256=VjrFp8qdckOGrW0a5aBvPs612xSejyxoGa5voyUYRLc,5018
10
+ camel/agents/search_agent.py,sha256=oWXkaYqXtFyC0hjK7Naipk5MtN1wiE0YeqH-X_7yqyQ,4546
11
+ camel/agents/task_agent.py,sha256=W_xRXI-BN8RqRxipzcVonM6cTNvPsFI9FMgoyLL5NAc,14584
12
+ camel/agents/tool_agents/__init__.py,sha256=ulTNWU2qoFGe3pvVmCq_sdfeSX3NKZ0due66TYvsL-M,862
13
+ camel/agents/tool_agents/base.py,sha256=nQAhfWi8a_bCgzlf5-G-tmj1fKm6AjpRc89NQkWwpnc,1399
14
+ camel/agents/tool_agents/hugging_face_tool_agent.py,sha256=1Z5tG6f_86eL0vmtRZ-BJvoLDFFLhoHt8JtDvgat1xU,8723
15
+ camel/configs/__init__.py,sha256=BFnU7Wwk2-O6LAVBvZQYiXF-bxataeWMVJP2Ud3zfEo,1767
16
+ camel/configs/anthropic_config.py,sha256=DGQoPyYrayhYQ7aSjkYYGHOZ5VdQ9qahtaS0p_GpU0Q,3294
17
+ camel/configs/base_config.py,sha256=gjsDACMCk-hXDBk7qkeHcpbQrWy6jbp4iyzfqgghJEk,2485
18
+ camel/configs/gemini_config.py,sha256=e6svM3tMnVVNrNJizd0lodoQ6sO4aRAL_GVur10tM8w,6912
19
+ camel/configs/groq_config.py,sha256=4taRHMntWlD1CV0rzbTnRXZV1QKphiJwTqNHXZ9MnhI,5755
20
+ camel/configs/litellm_config.py,sha256=77k7HT-0s9Sq_g4KeDjL_MZId0Tx5TB8oupIyGQHx08,4692
21
+ camel/configs/mistral_config.py,sha256=PaflrNkNvFAjMz416tFXXgwIYRTnIgTlPkhpBKqIXNw,3464
22
+ camel/configs/ollama_config.py,sha256=xrT-ulqvANjIu0bVxOzN93uaKUs8e2gW1tmYK1jULEM,4357
23
+ camel/configs/openai_config.py,sha256=yQf7lkBcYTtCNAopow3SlZgcDMlMkiCpC5Dvhh9wb9M,7327
24
+ camel/configs/vllm_config.py,sha256=jfeveBnlkkBHC2RFkffG6ZlTkGzkwrX_WXMwHkg36Jg,5516
25
+ camel/configs/zhipuai_config.py,sha256=zU8Zaj3d9d7SCFEFIkCIRNlnJw9z_oFDmIoCQKrerEM,3600
26
+ camel/embeddings/__init__.py,sha256=KTX6IC9b2ifKde-Yh7srSp_gNopvBwtDy8kEzazn5lE,1106
27
+ camel/embeddings/base.py,sha256=deX70VXGmWGRAPal3HheXvMaarymRR5I1i90KPWGWXs,2196
28
+ camel/embeddings/mistral_embedding.py,sha256=eXes7Tebjfm52YwuSI6ihCnZB40oJ3AxNb6SPVedRic,3219
29
+ camel/embeddings/openai_embedding.py,sha256=Eh7Hbj6bWMTrX0Tze2IgPdD3-v9aRoBeE8AifG3jF8A,3332
30
+ camel/embeddings/sentence_transformers_embeddings.py,sha256=ayYIBOADdmmhlmo1iZS8tI_mZ-rX0sxjljyQpkuftcw,2730
31
+ camel/embeddings/vlm_embedding.py,sha256=VvD_b737snNrZTRE4ejFvWLjd_YT1DCTKl8yKIgRM-g,5436
32
+ camel/generators.py,sha256=tcYDoHwSKN0rBiu7u4rWN9pb61O8OaclrNaasCqHSJM,10437
33
+ camel/human.py,sha256=pejmjjcyVDKZCffWq-016ZWrjX9uC6aqYnIyiwzrz5w,4968
34
+ camel/interpreters/__init__.py,sha256=HXspVCRZSFAXIJxhxrnr_RpZqZSWqgLOZ2KdQDlTn9s,1205
35
+ camel/interpreters/base.py,sha256=JZpQmxYBflPcDerj-R6TB6nnKvhnZR3Drraxo84JuxE,1904
36
+ camel/interpreters/docker_interpreter.py,sha256=Lsq5XxcDCAvxoDcVnog8tyvKIervI5aEkPXLTLQqeh4,8441
37
+ camel/interpreters/internal_python_interpreter.py,sha256=ZbVmSB2zvWbvvTOL0xpDlJel-I9rv13w1rP4RvtpNiE,21866
38
+ camel/interpreters/interpreter_error.py,sha256=4pI_dKohUKcQOrqJafolyjRfOHwBUuUBXCwwD46P4wE,886
39
+ camel/interpreters/ipython_interpreter.py,sha256=B0v1DCiq6PmOYQXXQAQBX1oOYjgJ0geLwUG9UxPR4TM,5950
40
+ camel/interpreters/subprocess_interpreter.py,sha256=nKxFXZJ9zGYlKdNlz6Ln7bvg65ejKZ8yAHgIFuR2WzM,6835
41
+ camel/loaders/__init__.py,sha256=p3-x9xSjJ4v1pt-T5mMKWmqzO4PnRdOPd4dJJeOV8RI,977
42
+ camel/loaders/base_io.py,sha256=LSke5Pje3GyA9JJJMAo1Ib9P07FtTYUr3a9RG9Mzr7c,8487
43
+ camel/loaders/firecrawl_reader.py,sha256=AJhZB2C0FTFwEVCW3UVo4Zp100Yqjeo9cRSqnayQA_g,7173
44
+ camel/loaders/jina_url_reader.py,sha256=PNl3fuU_7TkmuxaDnoW5pLnOi8XRnb7wlXA4FudWIbE,3620
45
+ camel/loaders/unstructured_io.py,sha256=Y4epnItSnd7BXMdt3b9L7Q3PRTKBldX6nzgAJTG6Z5A,25363
46
+ camel/memories/__init__.py,sha256=ml1Uj4Y_1Q2LfrTXOY38niF0x1H-N-u_zoN_VvR939U,1364
47
+ camel/memories/agent_memories.py,sha256=pzmjztFXPyNpabMWLi_-oJljMkYQvDP_s6Yq5U0hVEs,6097
48
+ camel/memories/base.py,sha256=kbyAmKkOfFdOKfHxwao8bIAbRSuOEXyzxPFd0NlvUCE,5003
49
+ camel/memories/blocks/__init__.py,sha256=5oPXhzoZke5d-4R8jmP54o8O2mmBvJB30oukRNrRX50,860
50
+ camel/memories/blocks/chat_history_block.py,sha256=lp1Btw_koexK9UnlaI1uvV-l3Yy0S28_CImes5RJ6ig,4725
51
+ camel/memories/blocks/vectordb_block.py,sha256=NekHoRa-8W9IKx6PPGZdhuDZiOhNxF8vXYX4gkY8HaM,3885
52
+ camel/memories/context_creators/__init__.py,sha256=0uLLP3YD46gOOh39her_weJo3viHmE4IWyWBLlutnqs,806
53
+ camel/memories/context_creators/score_based.py,sha256=UrioLcsj4jB4Rz5mg5hYmR8UYZzoYXMCxX2PKxblhxY,5385
54
+ camel/memories/records.py,sha256=kcXOATDTRRo-SCAcDpsV8Ttfie7p1GcXYzuXgXKJB0E,3686
55
+ camel/messages/__init__.py,sha256=djLvpz6AmjeLzuUSQl7J6T2O4x8MwSdcH0l9fbj_3yg,1468
56
+ camel/messages/base.py,sha256=694Zz19D4u-j8mmpRXwCVJ8cd2Wll6h7acbyNRofNTI,13722
57
+ camel/messages/func_message.py,sha256=CCVkbz-2pdxXV0vBETI0xt7d7uiN8zACpRI7lCnfTFQ,3841
58
+ camel/models/__init__.py,sha256=lKQnkyKST84D9h54_-mylLfVXON8AIT400jBlv01X3w,1700
59
+ camel/models/anthropic_model.py,sha256=_xhnbrMsuumB2jkuv2pVv3MFYxNE5EL5kVlZbYYBo5E,5751
60
+ camel/models/azure_openai_model.py,sha256=r5diPZp4XmCcZClkCqvTHB8frzRNou559j89dryKLKw,6078
61
+ camel/models/base_model.py,sha256=UHyAgo6GzYZNLTZD1T0C3_WmHUPoh9Qoe_SfvdI7HrU,4387
62
+ camel/models/gemini_model.py,sha256=h_kyD8LSpXCn2dQ4OEer5HwwEUwuTD65yRIRV4LD3Vs,7700
63
+ camel/models/groq_model.py,sha256=47Srfh6rvyExT9qWvIPUgJs_Vd11k88pYWJv3zefEmY,4690
64
+ camel/models/litellm_model.py,sha256=HSFDeBG8DeU-bz4e3QOtfpBkUmGyacM_zUce4Ban6qE,5747
65
+ camel/models/mistral_model.py,sha256=nKJOTjaDXSJ-9vD2sJqXpubDHBJHt2hVBdCYzFftg8M,5969
66
+ camel/models/model_factory.py,sha256=EoYKP6mZ5LFaAq_HIhzQc4Jfly7Gp91ihobvJDJNOOg,5354
67
+ camel/models/nemotron_model.py,sha256=2Idf4wrZervxvfu6av42EKjefFtDnBb6cKnWCJUkqI4,2682
68
+ camel/models/ollama_model.py,sha256=VG5i3D3P9mHeRb9hJiIPFe3F5puFamXMg66UXiHw6Q8,4867
69
+ camel/models/open_source_model.py,sha256=p5a2sCeZl5SyrgkygClndOrHEjpJxmyhE1CqKE2fZSw,6363
70
+ camel/models/openai_audio_models.py,sha256=_ddOxqzFZCVZaK6h33Z0THU6HXk2XlJTxVWquZ3oOaQ,10042
71
+ camel/models/openai_model.py,sha256=uOtiLmbdH7sDKqk9oV0i1HEVni_4ApPXCukShZwQDKA,4611
72
+ camel/models/stub_model.py,sha256=DuqaBsS55STSbcLJsk025Uwo_u4ixrSSKqKEoZj2ihY,3680
73
+ camel/models/vllm_model.py,sha256=i8zOK4XvVx0ietQLT74MgkcjMXYc2CMmsYS4EeT0N-w,5005
74
+ camel/models/zhipuai_model.py,sha256=O-KMk0_0KpKIwd-5tsnPxTWGoL89gPLTUPLB0qxmyIg,4943
75
+ camel/prompts/__init__.py,sha256=O5bkcuwj2kXTkz5yDPiiMI8KN04vI8bCKG7mGE1SIdI,2326
76
+ camel/prompts/ai_society.py,sha256=ApgvIED1Z_mdsWDNc2_u35Ktp7pEKksMrOIQKo_q5cI,6306
77
+ camel/prompts/base.py,sha256=VMde6w97zHPP03OA628wGwXhtJweoccOK1B1f3aESDo,8464
78
+ camel/prompts/code.py,sha256=vrv2mPjlakPlqVLQt_rA1veP79EN1t3iM41bkACrc9I,5865
79
+ camel/prompts/evaluation.py,sha256=4zm5ZVy3CSb2NdFWnS43ejK8Cu_pU8iUIj06ofpuZpg,1596
80
+ camel/prompts/generate_text_embedding_data.py,sha256=S0D0S99OAixDh_jp3sfFbeRJjffLutmyUd-vryqV7ho,4246
81
+ camel/prompts/image_craft.py,sha256=rmuBrndFYqxRFF00BMQI69xfDEi8FLF3ygUSivzn5m4,1370
82
+ camel/prompts/misalignment.py,sha256=aL3W5WvTJBfF-1vWQse_tn3zAOaezHGU510HLs0AlQo,4537
83
+ camel/prompts/multi_condition_image_craft.py,sha256=cqktEtrnDsqayDsgAky0rSeFXnMkAm2BXPaPXooJhik,1401
84
+ camel/prompts/object_recognition.py,sha256=L_YM_c8AxwO6MvwuUdeuluwhBPXedNxNIzOv5yF9Dag,1422
85
+ camel/prompts/prompt_templates.py,sha256=PeOp_eUgyZyJ7BCwA2cvSx8O3QPu9ftjgaZ6Al8zlJQ,4134
86
+ camel/prompts/role_description_prompt_template.py,sha256=k9p3NlxY1MWKzhoRpeQeuz0oHDQYo63WoPdWcUmHr_A,2544
87
+ camel/prompts/solution_extraction.py,sha256=5vTSaeQoBSvaur3cKgqQ9kLxSA5QIOBI4OPQzXWbQFg,2109
88
+ camel/prompts/task_prompt_template.py,sha256=BQuRdV7-dIF76PcPNOEM5EqwtwutWsfKMxv7QcZ1ASs,3399
89
+ camel/prompts/translation.py,sha256=V_40Ko2is5dAOCZ8DzsHo6DO7l8_jnEV9KjCKH7GxtY,1902
90
+ camel/prompts/video_description_prompt.py,sha256=HRd3fHXftKwBm5QH7Tvm3FabgZPCoAvfJfPCo-Cbr4k,1295
91
+ camel/responses/__init__.py,sha256=edtTQskOgq5obyITziRFL62HTJP9sAikAtP9vrFacEQ,795
92
+ camel/responses/agent_responses.py,sha256=sGlGwXz2brWI-FpiU5EhVRpZvcfGWUmooAF0ukqAF3I,1771
93
+ camel/retrievers/__init__.py,sha256=CuP3B77zl2PoF-W2y9xSkTGRzoK2J4TlUHdCtuJD8dg,1059
94
+ camel/retrievers/auto_retriever.py,sha256=jpBPrPB1_uSd4YrfwUpIlaOakU5ryE6-GDjhjldo7sU,13559
95
+ camel/retrievers/base.py,sha256=sgqaJDwIkWluEgPBlukFN7RYZJnrp0imCAOEWm6bZ40,2646
96
+ camel/retrievers/bm25_retriever.py,sha256=qM1oCQ-fak3izEjQVn18t0aceW-W8cRKbaYPwcHrEjI,5067
97
+ camel/retrievers/cohere_rerank_retriever.py,sha256=HvnFqXpsX9EdBOab0kFLDyxxJnknPFMVxyQJQDlHbOA,4100
98
+ camel/retrievers/vector_retriever.py,sha256=PhPIUyjffOojwYiATEY1lsCQO9yDmpc8k-R4sAt5IvY,7316
99
+ camel/societies/__init__.py,sha256=JhGwUHjht4CewzC3shKuxmgB3oS7FIxIxmiKyhNsfIs,832
100
+ camel/societies/babyagi_playing.py,sha256=bDeHFPQ1Zocnb8HSu56xZMlC6-AZACZWqGM5l9KB-EA,11866
101
+ camel/societies/role_playing.py,sha256=VZRethoZxYtm-phEao79ksSyQqo2HHm8taNY-BjFDVE,22262
102
+ camel/storages/__init__.py,sha256=ghlDZ1cF3O_QxwX9xIIZ__bnHcUjh7dbAF1X_ivkofc,1551
103
+ camel/storages/graph_storages/__init__.py,sha256=vsJZkedaCS-cLQ-KgMqio8cxXvbousBWVqzZJvlimT8,897
104
+ camel/storages/graph_storages/base.py,sha256=-Ys1BIuz4H5FvYMZTBIjg8Cfv40CPQ-OsovwMzygEgU,2858
105
+ camel/storages/graph_storages/graph_element.py,sha256=FGYJZpS3UeSd9yyzz5KelMqbpJ6m5177PspZ8ueoQQI,2580
106
+ camel/storages/graph_storages/neo4j_graph.py,sha256=YAT7u2jPs5pNSO_tSwARHJyt3HqYXpbpE4ZBtv935Kg,22138
107
+ camel/storages/key_value_storages/__init__.py,sha256=v3Wy3CAJNgrPyBV4miOC6TxQDL-PYdGW8HbqiYl7k00,968
108
+ camel/storages/key_value_storages/base.py,sha256=knxni8WiyTXJ2emZQO-JIsbxw6Ei7EO6dj-bU2YCoSY,2183
109
+ camel/storages/key_value_storages/in_memory.py,sha256=pAcKkVd7jlPS6seR31agdyjx9TNIIRMIyx497XWXwbs,1955
110
+ camel/storages/key_value_storages/json.py,sha256=BlOhuyWbSjzKixtA5e9O0z8BFK4pi96OcPNxnFfDPQw,3471
111
+ camel/storages/key_value_storages/redis.py,sha256=nQmdVUTLL0bW3hDeX5k-V2XKv0n6wuvbBxlrBmWVbpw,5706
112
+ camel/storages/vectordb_storages/__init__.py,sha256=hEhPyCPlzyXUsDFDzKRdLBj09rO1b5bsn76AJrDcaG4,1076
113
+ camel/storages/vectordb_storages/base.py,sha256=XNRv6CFg1rb9G_hZhUmN4t9XCU9rCakH0hooO1osTsE,6681
114
+ camel/storages/vectordb_storages/milvus.py,sha256=EkwaG3bq7djektSI2jdSTccE7GjBpZruqXQoPTxtyoo,13489
115
+ camel/storages/vectordb_storages/qdrant.py,sha256=lG_tOdjfTybSUNluQ1TEqYX96dSMrVSPg6HjO6Uzw7I,13439
116
+ camel/tasks/__init__.py,sha256=g8_UAa4WmhaesYtzAUMW7m3mg-3ILEUvTaB7eOU9-3I,912
117
+ camel/tasks/task.py,sha256=1klroUleHhnEJmWqnFHILqMryVBqL0bUXyvzoabuga4,12614
118
+ camel/tasks/task_prompt.py,sha256=eDmjB0vv2InmPjKAMzy8wU5PzTPy3WFk5F7zKW9d_ZQ,2093
119
+ camel/terminators/__init__.py,sha256=pE7fcfDUNngdbm1BhzSQPRMXNbdd28rl9YbF4gKWwXE,997
120
+ camel/terminators/base.py,sha256=TSkl3maNEsdjyAniJaSgFfD4UF8RQ1LwNIiGw0dN8Gg,1396
121
+ camel/terminators/response_terminator.py,sha256=zcXuigbvlclUoBv4xcVbfU36ZohUT1RhI-rSnukloUY,4951
122
+ camel/terminators/token_limit_terminator.py,sha256=mK30wVUnoqNAvIo-wxkqY5gUSNay2M04rsAktKqoiOI,2087
123
+ camel/toolkits/__init__.py,sha256=JDejqSwBhK0smqpjDZ_037WiJYdEjaelqr7wkKZEeDk,2122
124
+ camel/toolkits/base.py,sha256=ez04Ei8jwIAws023bM19EGkOPUkQMouULqBvOKfM4kM,986
125
+ camel/toolkits/code_execution.py,sha256=fWBhn1_3adiv7YYuA0gJzEBlc_dYNS6_hVtDbgB-zX0,2425
126
+ camel/toolkits/dalle_toolkit.py,sha256=IalDFfNCz58LMRdCZNSJfLMiauHGBGN9XNRV7pzuf28,5261
127
+ camel/toolkits/github_toolkit.py,sha256=ZauRY-kW8nx_L6igVEF62hD16j3KhqU2r49t1j6hO78,10979
128
+ camel/toolkits/google_maps_toolkit.py,sha256=uylzlmsbjbcMwjVDPVLTLiZrUKSmGxpfukSqaJ8bM94,14343
129
+ camel/toolkits/math_toolkit.py,sha256=r-85DHvihR87DU6n_W75pecV1P9xV3Hylfp6u-ue7T4,2521
130
+ camel/toolkits/open_api_specs/biztoc/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
131
+ camel/toolkits/open_api_specs/biztoc/ai-plugin.json,sha256=IJinQbLv5MFPGFwdN7PbOhwArFVExSEZdJspe-mOBIo,866
132
+ camel/toolkits/open_api_specs/biztoc/openapi.yaml,sha256=SQ2bYIWb1nVBtkBeFaOihiWQ71oZ2bzz0fCgu6igM8A,610
133
+ camel/toolkits/open_api_specs/coursera/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
134
+ camel/toolkits/open_api_specs/coursera/openapi.yaml,sha256=iouLcNNpVvXLfmkyKrbJlS3MEjBJ7TgVR48UID8dwfE,1981
135
+ camel/toolkits/open_api_specs/create_qr_code/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
136
+ camel/toolkits/open_api_specs/create_qr_code/openapi.yaml,sha256=d6ZNFmhCwlqZj8Rp9lmdU1dYPyh3-GnadbEUKHqjBfc,1158
137
+ camel/toolkits/open_api_specs/klarna/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
138
+ camel/toolkits/open_api_specs/klarna/openapi.yaml,sha256=9wpwRn8NLZL1reN6YUPsZP24hbDJJYvOJeeoWTk7ojQ,2887
139
+ camel/toolkits/open_api_specs/nasa_apod/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
140
+ camel/toolkits/open_api_specs/nasa_apod/openapi.yaml,sha256=4NPWtk9k7UwNpUihkrbCXzzs4zls-YnEYKe6qmtO8FU,2044
141
+ camel/toolkits/open_api_specs/outschool/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
142
+ camel/toolkits/open_api_specs/outschool/ai-plugin.json,sha256=QohJo8Ya0RGBvs9cBQR-UgSMl0gXJdNlWO8d2FyqdE8,1089
143
+ camel/toolkits/open_api_specs/outschool/openapi.yaml,sha256=t9gHdt09CQ8QMVnzEBxkcgH9eG720IsnVwB_6QxzSC4,8700
144
+ camel/toolkits/open_api_specs/outschool/paths/__init__.py,sha256=2XEfkKfyijEhzTodYGGoD5qvCQLYYlcxboQuNfLGBJs,780
145
+ camel/toolkits/open_api_specs/outschool/paths/get_classes.py,sha256=1skqdvrOjI_oywSe3KBV4zuqDg_EOpftpA3G6gXCZ8c,1122
146
+ camel/toolkits/open_api_specs/outschool/paths/search_teachers.py,sha256=p6J9jTxbBNVJTa3M1qaJu3VKtIZEZFX0etxw7a3pdFk,1125
147
+ camel/toolkits/open_api_specs/security_config.py,sha256=uxdd-Uh1hyHd3wvXdVahBH0hDdf0-IEoVk9Rh2vpAh0,904
148
+ camel/toolkits/open_api_specs/speak/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
149
+ camel/toolkits/open_api_specs/speak/openapi.yaml,sha256=rmM_-E4tYJ2LOpUlcQxfQtcQSRkVnsBkQWMmKdW2QqQ,6557
150
+ camel/toolkits/open_api_specs/web_scraper/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
151
+ camel/toolkits/open_api_specs/web_scraper/ai-plugin.json,sha256=jjHvbj0DQ4AYcL9JlSWhyJZ3mFj4eC33E4t6Ci54p3s,1028
152
+ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZviOylpGmJ-zssYrfAgkzqdoyk,2191
153
+ camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
154
+ camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=SQGbFkshLN4xm-Ya49ssbSvaU1nFVNFYhWsEPYVeFe0,1123
155
+ camel/toolkits/open_api_toolkit.py,sha256=rbQrhY6gHoZi9kiX9138pah9qZ2S8K5Vex1zFGWeCK8,23403
156
+ camel/toolkits/openai_function.py,sha256=eaE441qxLvuRKr_WrpYLGkr5P2Nav07VVdR29n76RkU,14767
157
+ camel/toolkits/retrieval_toolkit.py,sha256=XVBKCuGp_RjOaiJQ6dTwKlsQVg6X1JoROiwPyDw1tkE,3021
158
+ camel/toolkits/search_toolkit.py,sha256=05fKN9LYSvu70iXO4Vziv4QOU3WFbVnIW-8sTeilkLY,12932
159
+ camel/toolkits/slack_toolkit.py,sha256=JdgDJe7iExTmG7dDXOG6v5KpVjZ6_My_d_WFTYSxkw4,10839
160
+ camel/toolkits/twitter_toolkit.py,sha256=oQw8wRkU7iDxaocsmWvio4pU75pmq6FJAorPdQ2xEAE,19810
161
+ camel/toolkits/weather_toolkit.py,sha256=n4YrUI_jTIH7oqH918IdHbXLgfQ2BPGIWWK8Jp8G1Uw,7054
162
+ camel/types/__init__.py,sha256=ArKXATj3z_Vv4ISmROVeo6Mv3tj5kE1dTkqfgwyxVY4,1975
163
+ camel/types/enums.py,sha256=AuZhXEH2EMN0iNKwRwxYS_0zjvzcD_Lg5aDQTakROAs,16019
164
+ camel/types/openai_types.py,sha256=BNQ6iCzKTjSvgcXFsAFIgrUS_YUFZBU6bDoyAp387hI,2045
165
+ camel/utils/__init__.py,sha256=0hHoqVcHhFt-OqcV6vagRdgBzi_EDsvezRXvprGyQ_c,2219
166
+ camel/utils/async_func.py,sha256=SLo8KPkrNKdsONvFf3KBb33EgFn4gH2EKSX1aI_LKes,1578
167
+ camel/utils/commons.py,sha256=mUT89LRsWU1UtK30r8NjOusApCDXiqABIjAwonOAZhY,15305
168
+ camel/utils/constants.py,sha256=BdB5qgphZWsgKZf__gsQal6KiQSapvICGWKwiZlzBvM,1205
169
+ camel/utils/token_counting.py,sha256=PI3I5J5nYqoLMjOHhW5vU33aQxYcksWtqOd_VcXtREk,20863
170
+ camel/workforce/__init__.py,sha256=6jwJWDlESEqcnWCm61WCyjzFUF6KLzXA_fGI86rHfiE,878
171
+ camel/workforce/base.py,sha256=lEHqgOV1tmsy7y4wuuKClcDkoPCRvXVdMrBngsM_6yY,1722
172
+ camel/workforce/manager_node.py,sha256=eMmsOAoy0Wtk92b_06GhGnwKDgrTo0w-UgQorkh-az0,11529
173
+ camel/workforce/role_playing_node.py,sha256=OrHI0WbN8-jW7UPnl0hzmRkNSjQERhvc4QaoNSl_3Iw,7008
174
+ camel/workforce/single_agent_node.py,sha256=AzbsAX58q_2VpVN1iArauLKu76VwpTMqvlyrHTyDWjw,2928
175
+ camel/workforce/task_channel.py,sha256=jYwhF3Ppc7839Kv0kWXDXkWtjRwPvoP_uF0zTwC_-jg,6752
176
+ camel/workforce/utils.py,sha256=Z-kODz5PMPtfeKKVqpcQq-b-B8oqC7XSwi_F3__Ijhs,3526
177
+ camel/workforce/worker_node.py,sha256=wsRqk2rugCvvkcmCzvn-y-gQuyuJGAG8PIr1KtgqJFw,3878
178
+ camel/workforce/workforce.py,sha256=SVJJgSSkYvk05RgL9oaJzHwzziH7u51KLINRuzLB8BI,1773
179
+ camel/workforce/workforce_prompt.py,sha256=cAWYEIA0rau5itEekSoUIFttBzpKM9RzB6x-mfukGSU,4665
180
+ camel_ai-0.1.6.1.dist-info/METADATA,sha256=uP3-pN3-HgKEMpu1etRPW8UUGmtiF-PVxiffZIg8Wv4,23992
181
+ camel_ai-0.1.6.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
182
+ camel_ai-0.1.6.1.dist-info/RECORD,,
@@ -1,51 +0,0 @@
1
- # =========== Copyright 2023 @ 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 @ CAMEL-AI.org. All Rights Reserved. ===========
14
- # ruff: noqa: I001
15
- from .openai_function import (
16
- OpenAIFunction,
17
- get_openai_function_schema,
18
- get_openai_tool_schema,
19
- )
20
- from .open_api_specs.security_config import openapi_security_config
21
-
22
- from .google_maps_function import MAP_FUNCS
23
- from .math_functions import MATH_FUNCS
24
- from .open_api_function import OPENAPI_FUNCS
25
- from .retrieval_functions import RETRIEVAL_FUNCS
26
- from .search_functions import SEARCH_FUNCS
27
- from .twitter_function import TWITTER_FUNCS
28
- from .weather_functions import WEATHER_FUNCS
29
- from .slack_functions import SLACK_FUNCS
30
-
31
- from .open_api_function import (
32
- apinames_filepaths_to_funs_schemas,
33
- generate_apinames_filepaths,
34
- )
35
-
36
- __all__ = [
37
- 'OpenAIFunction',
38
- 'get_openai_function_schema',
39
- 'get_openai_tool_schema',
40
- 'openapi_security_config',
41
- 'apinames_filepaths_to_funs_schemas',
42
- 'generate_apinames_filepaths',
43
- 'MAP_FUNCS',
44
- 'MATH_FUNCS',
45
- 'OPENAPI_FUNCS',
46
- 'RETRIEVAL_FUNCS',
47
- 'SEARCH_FUNCS',
48
- 'TWITTER_FUNCS',
49
- 'WEATHER_FUNCS',
50
- 'SLACK_FUNCS',
51
- ]