camel-ai 0.1.6.2__py3-none-any.whl → 0.1.6.5__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.
- camel/__init__.py +1 -1
- camel/configs/gemini_config.py +0 -1
- camel/configs/groq_config.py +1 -1
- camel/configs/mistral_config.py +14 -10
- camel/embeddings/mistral_embedding.py +5 -5
- camel/interpreters/docker_interpreter.py +1 -1
- camel/loaders/__init__.py +1 -2
- camel/loaders/base_io.py +118 -52
- camel/loaders/jina_url_reader.py +6 -6
- camel/loaders/unstructured_io.py +34 -295
- camel/models/__init__.py +2 -0
- camel/models/mistral_model.py +120 -26
- camel/models/model_factory.py +3 -3
- camel/models/openai_compatibility_model.py +105 -0
- camel/retrievers/auto_retriever.py +40 -52
- camel/retrievers/bm25_retriever.py +9 -6
- camel/retrievers/vector_retriever.py +29 -20
- camel/storages/object_storages/__init__.py +22 -0
- camel/storages/object_storages/amazon_s3.py +205 -0
- camel/storages/object_storages/azure_blob.py +166 -0
- camel/storages/object_storages/base.py +115 -0
- camel/storages/object_storages/google_cloud.py +152 -0
- camel/toolkits/retrieval_toolkit.py +6 -6
- camel/toolkits/search_toolkit.py +4 -4
- camel/types/enums.py +7 -0
- camel/utils/token_counting.py +7 -3
- {camel_ai-0.1.6.2.dist-info → camel_ai-0.1.6.5.dist-info}/METADATA +9 -5
- {camel_ai-0.1.6.2.dist-info → camel_ai-0.1.6.5.dist-info}/RECORD +29 -23
- {camel_ai-0.1.6.2.dist-info → camel_ai-0.1.6.5.dist-info}/WHEEL +0 -0
camel/toolkits/search_toolkit.py
CHANGED
|
@@ -65,7 +65,7 @@ class SearchToolkit(BaseToolkit):
|
|
|
65
65
|
return result
|
|
66
66
|
|
|
67
67
|
def search_duckduckgo(
|
|
68
|
-
self, query: str, source: str = "text", max_results: int =
|
|
68
|
+
self, query: str, source: str = "text", max_results: int = 5
|
|
69
69
|
) -> List[Dict[str, Any]]:
|
|
70
70
|
r"""Use DuckDuckGo search engine to search information for
|
|
71
71
|
the given query.
|
|
@@ -78,7 +78,7 @@ class SearchToolkit(BaseToolkit):
|
|
|
78
78
|
query (str): The query to be searched.
|
|
79
79
|
source (str): The type of information to query (e.g., "text",
|
|
80
80
|
"images", "videos"). Defaults to "text".
|
|
81
|
-
max_results (int): Max number of results, defaults to `
|
|
81
|
+
max_results (int): Max number of results, defaults to `5`.
|
|
82
82
|
|
|
83
83
|
Returns:
|
|
84
84
|
List[Dict[str, Any]]: A list of dictionaries where each dictionary
|
|
@@ -152,7 +152,7 @@ class SearchToolkit(BaseToolkit):
|
|
|
152
152
|
return responses
|
|
153
153
|
|
|
154
154
|
def search_google(
|
|
155
|
-
self, query: str, num_result_pages: int =
|
|
155
|
+
self, query: str, num_result_pages: int = 5
|
|
156
156
|
) -> List[Dict[str, Any]]:
|
|
157
157
|
r"""Use Google search engine to search information for the given query.
|
|
158
158
|
|
|
@@ -196,7 +196,7 @@ class SearchToolkit(BaseToolkit):
|
|
|
196
196
|
# Different language may get different result
|
|
197
197
|
search_language = "en"
|
|
198
198
|
# How many pages to return
|
|
199
|
-
num_result_pages =
|
|
199
|
+
num_result_pages = num_result_pages
|
|
200
200
|
# Constructing the URL
|
|
201
201
|
# Doc: https://developers.google.com/custom-search/v1/using_rest
|
|
202
202
|
url = (
|
camel/types/enums.py
CHANGED
|
@@ -448,6 +448,7 @@ class ModelPlatformType(Enum):
|
|
|
448
448
|
GEMINI = "gemini"
|
|
449
449
|
VLLM = "vllm"
|
|
450
450
|
MISTRAL = "mistral"
|
|
451
|
+
OPENAICOMPATIBILITYMODEL = "openai-compatibility-model"
|
|
451
452
|
|
|
452
453
|
@property
|
|
453
454
|
def is_openai(self) -> bool:
|
|
@@ -499,6 +500,12 @@ class ModelPlatformType(Enum):
|
|
|
499
500
|
r"""Returns whether this platform is opensource."""
|
|
500
501
|
return self is ModelPlatformType.OPENSOURCE
|
|
501
502
|
|
|
503
|
+
@property
|
|
504
|
+
def is_openai_compatibility_model(self) -> bool:
|
|
505
|
+
r"""Returns whether this is a platform supporting openai
|
|
506
|
+
compatibility"""
|
|
507
|
+
return self is ModelPlatformType.OPENAICOMPATIBILITYMODEL
|
|
508
|
+
|
|
502
509
|
@property
|
|
503
510
|
def is_gemini(self) -> bool:
|
|
504
511
|
r"""Returns whether this platform is Gemini."""
|
camel/utils/token_counting.py
CHANGED
|
@@ -26,7 +26,9 @@ from PIL import Image
|
|
|
26
26
|
from camel.types import ModelType, OpenAIImageType, OpenAIVisionDetailType
|
|
27
27
|
|
|
28
28
|
if TYPE_CHECKING:
|
|
29
|
-
from mistral_common.protocol.instruct.request import
|
|
29
|
+
from mistral_common.protocol.instruct.request import ( # type:ignore[import-not-found]
|
|
30
|
+
ChatCompletionRequest,
|
|
31
|
+
)
|
|
30
32
|
|
|
31
33
|
from camel.messages import OpenAIMessage
|
|
32
34
|
|
|
@@ -517,7 +519,9 @@ class MistralTokenCounter(BaseTokenCounter):
|
|
|
517
519
|
model_type (ModelType): Model type for which tokens will be
|
|
518
520
|
counted.
|
|
519
521
|
"""
|
|
520
|
-
from mistral_common.tokens.tokenizers.mistral import
|
|
522
|
+
from mistral_common.tokens.tokenizers.mistral import ( # type:ignore[import-not-found]
|
|
523
|
+
MistralTokenizer,
|
|
524
|
+
)
|
|
521
525
|
|
|
522
526
|
self.model_type = model_type
|
|
523
527
|
|
|
@@ -565,7 +569,7 @@ class MistralTokenCounter(BaseTokenCounter):
|
|
|
565
569
|
"""
|
|
566
570
|
|
|
567
571
|
from mistral_common.protocol.instruct.request import (
|
|
568
|
-
ChatCompletionRequest,
|
|
572
|
+
ChatCompletionRequest, # type:ignore[import-not-found]
|
|
569
573
|
)
|
|
570
574
|
|
|
571
575
|
mistral_request = ChatCompletionRequest( # type: ignore[type-var]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.1.6.
|
|
3
|
+
Version: 0.1.6.5
|
|
4
4
|
Summary: Communicative Agents for AI Society Study
|
|
5
5
|
Home-page: https://www.camel-ai.org/
|
|
6
6
|
License: Apache-2.0
|
|
@@ -18,6 +18,7 @@ Provides-Extra: graph-storages
|
|
|
18
18
|
Provides-Extra: huggingface-agent
|
|
19
19
|
Provides-Extra: kv-stroages
|
|
20
20
|
Provides-Extra: model-platforms
|
|
21
|
+
Provides-Extra: object-storages
|
|
21
22
|
Provides-Extra: retrievers
|
|
22
23
|
Provides-Extra: test
|
|
23
24
|
Provides-Extra: tools
|
|
@@ -26,7 +27,9 @@ Requires-Dist: PyMuPDF (>=1.22.5,<2.0.0) ; extra == "tools" or extra == "all"
|
|
|
26
27
|
Requires-Dist: accelerate (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
|
|
27
28
|
Requires-Dist: agentops (>=0.3.6,<0.4.0) ; extra == "tools" or extra == "all"
|
|
28
29
|
Requires-Dist: anthropic (>=0.29.0,<0.30.0)
|
|
30
|
+
Requires-Dist: azure-storage-blob (>=12.21.0,<13.0.0) ; extra == "object-storages" or extra == "all"
|
|
29
31
|
Requires-Dist: beautifulsoup4 (>=4,<5) ; extra == "tools" or extra == "all"
|
|
32
|
+
Requires-Dist: boto3 (>=1.34.149,<2.0.0) ; extra == "object-storages" or extra == "all"
|
|
30
33
|
Requires-Dist: cohere (>=4.56,<5.0) ; extra == "retrievers" or extra == "all"
|
|
31
34
|
Requires-Dist: colorama (>=0,<1)
|
|
32
35
|
Requires-Dist: curl_cffi (==0.6.2)
|
|
@@ -39,6 +42,7 @@ Requires-Dist: docx2txt (>=0.8,<0.9) ; extra == "tools" or extra == "all"
|
|
|
39
42
|
Requires-Dist: duckduckgo-search (>=6.1.0,<7.0.0) ; extra == "tools" or extra == "all"
|
|
40
43
|
Requires-Dist: eval-type-backport (==0.2.0)
|
|
41
44
|
Requires-Dist: firecrawl-py (>=0.0.20,<0.0.21) ; extra == "tools" or extra == "all"
|
|
45
|
+
Requires-Dist: google-cloud-storage (>=2.18.0,<3.0.0) ; extra == "object-storages" or extra == "all"
|
|
42
46
|
Requires-Dist: google-generativeai (>=0.6.0,<0.7.0) ; extra == "model-platforms" or extra == "all"
|
|
43
47
|
Requires-Dist: googlemaps (>=4.10.0,<5.0.0) ; extra == "tools" or extra == "all"
|
|
44
48
|
Requires-Dist: groq (>=0.5.0,<0.6.0)
|
|
@@ -47,11 +51,11 @@ Requires-Dist: ipykernel (>=6.0.0,<7.0.0)
|
|
|
47
51
|
Requires-Dist: jsonschema (>=4,<5)
|
|
48
52
|
Requires-Dist: jupyter_client (>=8.6.2,<9.0.0) ; extra == "tools" or extra == "all"
|
|
49
53
|
Requires-Dist: litellm (>=1.38.1,<2.0.0) ; extra == "model-platforms" or extra == "all"
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist: mistralai (>=0.4.2,<0.5.0) ; extra == "model-platforms" or extra == "all"
|
|
54
|
+
Requires-Dist: mistralai (>=1.0.0,<2.0.0) ; extra == "model-platforms" or extra == "all"
|
|
52
55
|
Requires-Dist: mock (>=5,<6) ; extra == "test"
|
|
53
56
|
Requires-Dist: neo4j (>=5.18.0,<6.0.0) ; extra == "graph-storages" or extra == "all"
|
|
54
57
|
Requires-Dist: newspaper3k (>=0.2.8,<0.3.0) ; extra == "tools" or extra == "all"
|
|
58
|
+
Requires-Dist: nltk (==3.8.1) ; extra == "tools" or extra == "all"
|
|
55
59
|
Requires-Dist: numpy (>=1,<2)
|
|
56
60
|
Requires-Dist: openai (>=1.2.3,<2.0.0)
|
|
57
61
|
Requires-Dist: openapi-spec-validator (>=0.7.1,<0.8.0) ; extra == "tools" or extra == "all"
|
|
@@ -79,7 +83,7 @@ Requires-Dist: soundfile (>=0,<1) ; extra == "huggingface-agent" or extra == "al
|
|
|
79
83
|
Requires-Dist: tiktoken (>=0.7.0,<0.8.0)
|
|
80
84
|
Requires-Dist: torch (>=2,<3) ; extra == "huggingface-agent" or extra == "all"
|
|
81
85
|
Requires-Dist: transformers (>=4,<5) ; extra == "huggingface-agent" or extra == "all"
|
|
82
|
-
Requires-Dist: unstructured[all-docs] (>=0.10
|
|
86
|
+
Requires-Dist: unstructured[all-docs] (>=0.10,<0.11) ; extra == "tools" or extra == "all"
|
|
83
87
|
Requires-Dist: wikipedia (>=1,<2) ; extra == "tools" or extra == "all"
|
|
84
88
|
Requires-Dist: wolframalpha (>=5.0.0,<6.0.0) ; extra == "tools" or extra == "all"
|
|
85
89
|
Project-URL: Documentation, https://docs.camel-ai.org
|
|
@@ -198,7 +202,7 @@ conda create --name camel python=3.9
|
|
|
198
202
|
conda activate camel
|
|
199
203
|
|
|
200
204
|
# Clone github repo
|
|
201
|
-
git clone -b v0.1.6.
|
|
205
|
+
git clone -b v0.1.6.5 https://github.com/camel-ai/camel.git
|
|
202
206
|
|
|
203
207
|
# Change directory into project directory
|
|
204
208
|
cd camel
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=_XswF67MSAdq-D9Yt9KcdGCUfyMao5xMv5mp5O0rEyc,780
|
|
2
2
|
camel/agents/__init__.py,sha256=SSU1wbhZXWwQnE0rRxkpyN57kEu72KklsZNcdLkXfTs,1551
|
|
3
3
|
camel/agents/base.py,sha256=X39qWSiT1WnDqaJ9k3gQrTpOQSwUKzNEVpp5AY6fDH8,1130
|
|
4
4
|
camel/agents/chat_agent.py,sha256=8yqGmaXnhfVE9dIgBanK74cfEZvHgKtx36YqUDvFuWE,36217
|
|
@@ -15,17 +15,17 @@ camel/agents/tool_agents/hugging_face_tool_agent.py,sha256=1Z5tG6f_86eL0vmtRZ-BJ
|
|
|
15
15
|
camel/configs/__init__.py,sha256=BFnU7Wwk2-O6LAVBvZQYiXF-bxataeWMVJP2Ud3zfEo,1767
|
|
16
16
|
camel/configs/anthropic_config.py,sha256=DGQoPyYrayhYQ7aSjkYYGHOZ5VdQ9qahtaS0p_GpU0Q,3294
|
|
17
17
|
camel/configs/base_config.py,sha256=gjsDACMCk-hXDBk7qkeHcpbQrWy6jbp4iyzfqgghJEk,2485
|
|
18
|
-
camel/configs/gemini_config.py,sha256=
|
|
19
|
-
camel/configs/groq_config.py,sha256
|
|
18
|
+
camel/configs/gemini_config.py,sha256=YHJSNEAIxBxPX1NAj2rWvM4OOR7vmIANH88pZO-aOsY,6880
|
|
19
|
+
camel/configs/groq_config.py,sha256=-ihiO5h4N_kUSlPNeBqIlnIkLkhC7oXsC2FYyAqtKp0,5755
|
|
20
20
|
camel/configs/litellm_config.py,sha256=77k7HT-0s9Sq_g4KeDjL_MZId0Tx5TB8oupIyGQHx08,4692
|
|
21
|
-
camel/configs/mistral_config.py,sha256=
|
|
21
|
+
camel/configs/mistral_config.py,sha256=G9LuY0-3S6az-8j8kpqB-4asgoaxTOsZVYeZBYJl6LI,3634
|
|
22
22
|
camel/configs/ollama_config.py,sha256=xrT-ulqvANjIu0bVxOzN93uaKUs8e2gW1tmYK1jULEM,4357
|
|
23
23
|
camel/configs/openai_config.py,sha256=yQf7lkBcYTtCNAopow3SlZgcDMlMkiCpC5Dvhh9wb9M,7327
|
|
24
24
|
camel/configs/vllm_config.py,sha256=jfeveBnlkkBHC2RFkffG6ZlTkGzkwrX_WXMwHkg36Jg,5516
|
|
25
25
|
camel/configs/zhipuai_config.py,sha256=zU8Zaj3d9d7SCFEFIkCIRNlnJw9z_oFDmIoCQKrerEM,3600
|
|
26
26
|
camel/embeddings/__init__.py,sha256=KTX6IC9b2ifKde-Yh7srSp_gNopvBwtDy8kEzazn5lE,1106
|
|
27
27
|
camel/embeddings/base.py,sha256=deX70VXGmWGRAPal3HheXvMaarymRR5I1i90KPWGWXs,2196
|
|
28
|
-
camel/embeddings/mistral_embedding.py,sha256=
|
|
28
|
+
camel/embeddings/mistral_embedding.py,sha256=Ft5GYWgGXTtPS71AVut0wjGMbXPIcDPQbu7ovWRVwAQ,3241
|
|
29
29
|
camel/embeddings/openai_embedding.py,sha256=Eh7Hbj6bWMTrX0Tze2IgPdD3-v9aRoBeE8AifG3jF8A,3332
|
|
30
30
|
camel/embeddings/sentence_transformers_embeddings.py,sha256=ayYIBOADdmmhlmo1iZS8tI_mZ-rX0sxjljyQpkuftcw,2730
|
|
31
31
|
camel/embeddings/vlm_embedding.py,sha256=VvD_b737snNrZTRE4ejFvWLjd_YT1DCTKl8yKIgRM-g,5436
|
|
@@ -33,16 +33,16 @@ camel/generators.py,sha256=tcYDoHwSKN0rBiu7u4rWN9pb61O8OaclrNaasCqHSJM,10437
|
|
|
33
33
|
camel/human.py,sha256=pejmjjcyVDKZCffWq-016ZWrjX9uC6aqYnIyiwzrz5w,4968
|
|
34
34
|
camel/interpreters/__init__.py,sha256=HXspVCRZSFAXIJxhxrnr_RpZqZSWqgLOZ2KdQDlTn9s,1205
|
|
35
35
|
camel/interpreters/base.py,sha256=JZpQmxYBflPcDerj-R6TB6nnKvhnZR3Drraxo84JuxE,1904
|
|
36
|
-
camel/interpreters/docker_interpreter.py,sha256=
|
|
36
|
+
camel/interpreters/docker_interpreter.py,sha256=WJnLCTzqU8CyyTWMXtbS8y235d1iK8X9yESpa2mHsHM,8447
|
|
37
37
|
camel/interpreters/internal_python_interpreter.py,sha256=ZbVmSB2zvWbvvTOL0xpDlJel-I9rv13w1rP4RvtpNiE,21866
|
|
38
38
|
camel/interpreters/interpreter_error.py,sha256=4pI_dKohUKcQOrqJafolyjRfOHwBUuUBXCwwD46P4wE,886
|
|
39
39
|
camel/interpreters/ipython_interpreter.py,sha256=B0v1DCiq6PmOYQXXQAQBX1oOYjgJ0geLwUG9UxPR4TM,5950
|
|
40
40
|
camel/interpreters/subprocess_interpreter.py,sha256=nKxFXZJ9zGYlKdNlz6Ln7bvg65ejKZ8yAHgIFuR2WzM,6835
|
|
41
|
-
camel/loaders/__init__.py,sha256=
|
|
42
|
-
camel/loaders/base_io.py,sha256=
|
|
41
|
+
camel/loaders/__init__.py,sha256=ClE516UbyUes6Zut8CCiH0zWqFwwpgEcP9ur3dte8iU,949
|
|
42
|
+
camel/loaders/base_io.py,sha256=xzK67fqx66eYaM6fMXRJiSZfwKhFVNQmzuKURPtTzhk,10339
|
|
43
43
|
camel/loaders/firecrawl_reader.py,sha256=AJhZB2C0FTFwEVCW3UVo4Zp100Yqjeo9cRSqnayQA_g,7173
|
|
44
|
-
camel/loaders/jina_url_reader.py,sha256=
|
|
45
|
-
camel/loaders/unstructured_io.py,sha256=
|
|
44
|
+
camel/loaders/jina_url_reader.py,sha256=ur_2Z3NFrz5AbPFi5REyZh5fISkJ9H_UZV4gtmOSO04,3607
|
|
45
|
+
camel/loaders/unstructured_io.py,sha256=cY-5mqViE5Sobr3dnbK-KYcXjalUfeDfb8Yk6yOsu_g,16330
|
|
46
46
|
camel/memories/__init__.py,sha256=ml1Uj4Y_1Q2LfrTXOY38niF0x1H-N-u_zoN_VvR939U,1364
|
|
47
47
|
camel/memories/agent_memories.py,sha256=pzmjztFXPyNpabMWLi_-oJljMkYQvDP_s6Yq5U0hVEs,6097
|
|
48
48
|
camel/memories/base.py,sha256=kbyAmKkOfFdOKfHxwao8bIAbRSuOEXyzxPFd0NlvUCE,5003
|
|
@@ -55,19 +55,20 @@ camel/memories/records.py,sha256=kcXOATDTRRo-SCAcDpsV8Ttfie7p1GcXYzuXgXKJB0E,368
|
|
|
55
55
|
camel/messages/__init__.py,sha256=djLvpz6AmjeLzuUSQl7J6T2O4x8MwSdcH0l9fbj_3yg,1468
|
|
56
56
|
camel/messages/base.py,sha256=694Zz19D4u-j8mmpRXwCVJ8cd2Wll6h7acbyNRofNTI,13722
|
|
57
57
|
camel/messages/func_message.py,sha256=CCVkbz-2pdxXV0vBETI0xt7d7uiN8zACpRI7lCnfTFQ,3841
|
|
58
|
-
camel/models/__init__.py,sha256=
|
|
58
|
+
camel/models/__init__.py,sha256=mg6zWx6SDxHbVNmoToJE603zbWW4fG6sSt6dpmm2sJA,1797
|
|
59
59
|
camel/models/anthropic_model.py,sha256=_xhnbrMsuumB2jkuv2pVv3MFYxNE5EL5kVlZbYYBo5E,5751
|
|
60
60
|
camel/models/azure_openai_model.py,sha256=r5diPZp4XmCcZClkCqvTHB8frzRNou559j89dryKLKw,6078
|
|
61
61
|
camel/models/base_model.py,sha256=UHyAgo6GzYZNLTZD1T0C3_WmHUPoh9Qoe_SfvdI7HrU,4387
|
|
62
62
|
camel/models/gemini_model.py,sha256=h_kyD8LSpXCn2dQ4OEer5HwwEUwuTD65yRIRV4LD3Vs,7700
|
|
63
63
|
camel/models/groq_model.py,sha256=47Srfh6rvyExT9qWvIPUgJs_Vd11k88pYWJv3zefEmY,4690
|
|
64
64
|
camel/models/litellm_model.py,sha256=HSFDeBG8DeU-bz4e3QOtfpBkUmGyacM_zUce4Ban6qE,5747
|
|
65
|
-
camel/models/mistral_model.py,sha256=
|
|
66
|
-
camel/models/model_factory.py,sha256=
|
|
65
|
+
camel/models/mistral_model.py,sha256=39rHJ-z_6Z-UbtUqZPEAbCdFYY1Ft0Drs42jG5hHaho,9517
|
|
66
|
+
camel/models/model_factory.py,sha256=LAwj2DR2AA7tdLG6Kua4QAR26gSqlvTQfYqqlmcrXyQ,5416
|
|
67
67
|
camel/models/nemotron_model.py,sha256=2Idf4wrZervxvfu6av42EKjefFtDnBb6cKnWCJUkqI4,2682
|
|
68
68
|
camel/models/ollama_model.py,sha256=VG5i3D3P9mHeRb9hJiIPFe3F5puFamXMg66UXiHw6Q8,4867
|
|
69
69
|
camel/models/open_source_model.py,sha256=p5a2sCeZl5SyrgkygClndOrHEjpJxmyhE1CqKE2fZSw,6363
|
|
70
70
|
camel/models/openai_audio_models.py,sha256=_ddOxqzFZCVZaK6h33Z0THU6HXk2XlJTxVWquZ3oOaQ,10042
|
|
71
|
+
camel/models/openai_compatibility_model.py,sha256=pgb7MI8HKQe37hRpGPJVeH4E38pkaxTRc5-kJGLZr7E,3712
|
|
71
72
|
camel/models/openai_model.py,sha256=uOtiLmbdH7sDKqk9oV0i1HEVni_4ApPXCukShZwQDKA,4611
|
|
72
73
|
camel/models/stub_model.py,sha256=DuqaBsS55STSbcLJsk025Uwo_u4ixrSSKqKEoZj2ihY,3680
|
|
73
74
|
camel/models/vllm_model.py,sha256=i8zOK4XvVx0ietQLT74MgkcjMXYc2CMmsYS4EeT0N-w,5005
|
|
@@ -91,11 +92,11 @@ camel/prompts/video_description_prompt.py,sha256=HRd3fHXftKwBm5QH7Tvm3FabgZPCoAv
|
|
|
91
92
|
camel/responses/__init__.py,sha256=edtTQskOgq5obyITziRFL62HTJP9sAikAtP9vrFacEQ,795
|
|
92
93
|
camel/responses/agent_responses.py,sha256=sGlGwXz2brWI-FpiU5EhVRpZvcfGWUmooAF0ukqAF3I,1771
|
|
93
94
|
camel/retrievers/__init__.py,sha256=CuP3B77zl2PoF-W2y9xSkTGRzoK2J4TlUHdCtuJD8dg,1059
|
|
94
|
-
camel/retrievers/auto_retriever.py,sha256=
|
|
95
|
+
camel/retrievers/auto_retriever.py,sha256=YnhqzmpjbfNFwdj-eCwV2XVTaG64KgBKuVdfEIpoaJI,13130
|
|
95
96
|
camel/retrievers/base.py,sha256=sgqaJDwIkWluEgPBlukFN7RYZJnrp0imCAOEWm6bZ40,2646
|
|
96
|
-
camel/retrievers/bm25_retriever.py,sha256=
|
|
97
|
+
camel/retrievers/bm25_retriever.py,sha256=Dr7Yfkjw45sovI1EVNByGIMj7KERWrr8JHlh8csSF1s,5155
|
|
97
98
|
camel/retrievers/cohere_rerank_retriever.py,sha256=HvnFqXpsX9EdBOab0kFLDyxxJnknPFMVxyQJQDlHbOA,4100
|
|
98
|
-
camel/retrievers/vector_retriever.py,sha256=
|
|
99
|
+
camel/retrievers/vector_retriever.py,sha256=Jj2g98dP_r3nL13PrPp5DjPAHrru5aaM0jznaOM8WL0,7490
|
|
99
100
|
camel/societies/__init__.py,sha256=JhGwUHjht4CewzC3shKuxmgB3oS7FIxIxmiKyhNsfIs,832
|
|
100
101
|
camel/societies/babyagi_playing.py,sha256=bDeHFPQ1Zocnb8HSu56xZMlC6-AZACZWqGM5l9KB-EA,11866
|
|
101
102
|
camel/societies/role_playing.py,sha256=VZRethoZxYtm-phEao79ksSyQqo2HHm8taNY-BjFDVE,22262
|
|
@@ -109,6 +110,11 @@ camel/storages/key_value_storages/base.py,sha256=knxni8WiyTXJ2emZQO-JIsbxw6Ei7EO
|
|
|
109
110
|
camel/storages/key_value_storages/in_memory.py,sha256=pAcKkVd7jlPS6seR31agdyjx9TNIIRMIyx497XWXwbs,1955
|
|
110
111
|
camel/storages/key_value_storages/json.py,sha256=BlOhuyWbSjzKixtA5e9O0z8BFK4pi96OcPNxnFfDPQw,3471
|
|
111
112
|
camel/storages/key_value_storages/redis.py,sha256=nQmdVUTLL0bW3hDeX5k-V2XKv0n6wuvbBxlrBmWVbpw,5706
|
|
113
|
+
camel/storages/object_storages/__init__.py,sha256=H-0dcB_SOxn1eyg2ojq5Nk9dZQURBsPZ6u2Xw3L7_To,921
|
|
114
|
+
camel/storages/object_storages/amazon_s3.py,sha256=re64goLCJQp_nEHBCtqRzt8806RSQInhz7FuIvC2hK4,7253
|
|
115
|
+
camel/storages/object_storages/azure_blob.py,sha256=vtP5b9JGPenueKmU0O07nlRgAOgqIomyf7WvNfKmaFQ,5975
|
|
116
|
+
camel/storages/object_storages/base.py,sha256=E8fefvH7I5iMKtOMNjltOR6BQsoKeqBxYtitnx_dbAo,3802
|
|
117
|
+
camel/storages/object_storages/google_cloud.py,sha256=X4_bXmgeLYxG2h6OWZw-toxTliYwpujOjShGcFjYrAY,5315
|
|
112
118
|
camel/storages/vectordb_storages/__init__.py,sha256=hEhPyCPlzyXUsDFDzKRdLBj09rO1b5bsn76AJrDcaG4,1076
|
|
113
119
|
camel/storages/vectordb_storages/base.py,sha256=XNRv6CFg1rb9G_hZhUmN4t9XCU9rCakH0hooO1osTsE,6681
|
|
114
120
|
camel/storages/vectordb_storages/milvus.py,sha256=EkwaG3bq7djektSI2jdSTccE7GjBpZruqXQoPTxtyoo,13489
|
|
@@ -154,19 +160,19 @@ camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=f3LXNDzN2XWWo
|
|
|
154
160
|
camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=SQGbFkshLN4xm-Ya49ssbSvaU1nFVNFYhWsEPYVeFe0,1123
|
|
155
161
|
camel/toolkits/open_api_toolkit.py,sha256=rbQrhY6gHoZi9kiX9138pah9qZ2S8K5Vex1zFGWeCK8,23403
|
|
156
162
|
camel/toolkits/openai_function.py,sha256=eaE441qxLvuRKr_WrpYLGkr5P2Nav07VVdR29n76RkU,14767
|
|
157
|
-
camel/toolkits/retrieval_toolkit.py,sha256=
|
|
158
|
-
camel/toolkits/search_toolkit.py,sha256=
|
|
163
|
+
camel/toolkits/retrieval_toolkit.py,sha256=D16yeJX1WscWfXqeI7b_Y-x9UmaJdwn5ymnbv61jUks,2984
|
|
164
|
+
camel/toolkits/search_toolkit.py,sha256=vXe026bQpLic09iwY5PN4RS6SXeHYBBkjfnOlJYB670,12943
|
|
159
165
|
camel/toolkits/slack_toolkit.py,sha256=JdgDJe7iExTmG7dDXOG6v5KpVjZ6_My_d_WFTYSxkw4,10839
|
|
160
166
|
camel/toolkits/twitter_toolkit.py,sha256=oQw8wRkU7iDxaocsmWvio4pU75pmq6FJAorPdQ2xEAE,19810
|
|
161
167
|
camel/toolkits/weather_toolkit.py,sha256=n4YrUI_jTIH7oqH918IdHbXLgfQ2BPGIWWK8Jp8G1Uw,7054
|
|
162
168
|
camel/types/__init__.py,sha256=ArKXATj3z_Vv4ISmROVeo6Mv3tj5kE1dTkqfgwyxVY4,1975
|
|
163
|
-
camel/types/enums.py,sha256=
|
|
169
|
+
camel/types/enums.py,sha256=dFZCE013R8CQJRPWQKk-qj2Lv4_JnJso4LDPKTlXudo,16303
|
|
164
170
|
camel/types/openai_types.py,sha256=BNQ6iCzKTjSvgcXFsAFIgrUS_YUFZBU6bDoyAp387hI,2045
|
|
165
171
|
camel/utils/__init__.py,sha256=KBpIUiwA1iUCtMGk62y0FQ3Eatk4W8WNgMJjJUU1Ja8,2255
|
|
166
172
|
camel/utils/async_func.py,sha256=SLo8KPkrNKdsONvFf3KBb33EgFn4gH2EKSX1aI_LKes,1578
|
|
167
173
|
camel/utils/commons.py,sha256=MJ3q1KTt4t3SbZg1_l_dbBKkjGeuovY7m2q_dlM86Uk,15595
|
|
168
174
|
camel/utils/constants.py,sha256=BdB5qgphZWsgKZf__gsQal6KiQSapvICGWKwiZlzBvM,1205
|
|
169
|
-
camel/utils/token_counting.py,sha256=
|
|
175
|
+
camel/utils/token_counting.py,sha256=G7vBzrxSXm4DzHMOfMXaOYjYf8WJTpxjHjlzmngHlYQ,21004
|
|
170
176
|
camel/workforce/__init__.py,sha256=6jwJWDlESEqcnWCm61WCyjzFUF6KLzXA_fGI86rHfiE,878
|
|
171
177
|
camel/workforce/base.py,sha256=lEHqgOV1tmsy7y4wuuKClcDkoPCRvXVdMrBngsM_6yY,1722
|
|
172
178
|
camel/workforce/manager_node.py,sha256=eMmsOAoy0Wtk92b_06GhGnwKDgrTo0w-UgQorkh-az0,11529
|
|
@@ -177,6 +183,6 @@ camel/workforce/utils.py,sha256=Z-kODz5PMPtfeKKVqpcQq-b-B8oqC7XSwi_F3__Ijhs,3526
|
|
|
177
183
|
camel/workforce/worker_node.py,sha256=wsRqk2rugCvvkcmCzvn-y-gQuyuJGAG8PIr1KtgqJFw,3878
|
|
178
184
|
camel/workforce/workforce.py,sha256=SVJJgSSkYvk05RgL9oaJzHwzziH7u51KLINRuzLB8BI,1773
|
|
179
185
|
camel/workforce/workforce_prompt.py,sha256=cAWYEIA0rau5itEekSoUIFttBzpKM9RzB6x-mfukGSU,4665
|
|
180
|
-
camel_ai-0.1.6.
|
|
181
|
-
camel_ai-0.1.6.
|
|
182
|
-
camel_ai-0.1.6.
|
|
186
|
+
camel_ai-0.1.6.5.dist-info/METADATA,sha256=IsvDDPKdCVrevQgSaOD872LZjqf8GB7vEAR4ewBGPb0,24282
|
|
187
|
+
camel_ai-0.1.6.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
188
|
+
camel_ai-0.1.6.5.dist-info/RECORD,,
|
|
File without changes
|