camel-ai 0.1.5.4__py3-none-any.whl → 0.1.5.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.
Potentially problematic release.
This version of camel-ai might be problematic. Click here for more details.
- camel/__init__.py +1 -1
- camel/configs/__init__.py +6 -0
- camel/configs/litellm_config.py +8 -18
- camel/configs/ollama_config.py +85 -0
- camel/configs/zhipuai_config.py +78 -0
- camel/embeddings/openai_embedding.py +2 -2
- camel/functions/search_functions.py +5 -14
- camel/functions/slack_functions.py +5 -7
- camel/functions/twitter_function.py +3 -8
- camel/functions/weather_functions.py +3 -8
- camel/interpreters/__init__.py +2 -0
- camel/interpreters/docker_interpreter.py +235 -0
- camel/loaders/__init__.py +2 -0
- camel/loaders/base_io.py +5 -9
- camel/loaders/jina_url_reader.py +99 -0
- camel/loaders/unstructured_io.py +4 -6
- camel/models/anthropic_model.py +6 -4
- camel/models/litellm_model.py +49 -21
- camel/models/model_factory.py +1 -0
- camel/models/nemotron_model.py +14 -6
- camel/models/ollama_model.py +11 -17
- camel/models/openai_audio_models.py +10 -2
- camel/models/openai_model.py +4 -3
- camel/models/zhipuai_model.py +12 -6
- camel/retrievers/bm25_retriever.py +3 -8
- camel/retrievers/cohere_rerank_retriever.py +3 -5
- camel/storages/__init__.py +2 -0
- camel/storages/graph_storages/neo4j_graph.py +3 -7
- camel/storages/key_value_storages/__init__.py +2 -0
- camel/storages/key_value_storages/redis.py +169 -0
- camel/storages/vectordb_storages/milvus.py +3 -7
- camel/storages/vectordb_storages/qdrant.py +3 -7
- camel/toolkits/__init__.py +2 -0
- camel/toolkits/code_execution.py +69 -0
- camel/toolkits/github_toolkit.py +5 -9
- camel/types/enums.py +35 -1
- camel/utils/__init__.py +2 -2
- camel/utils/async_func.py +42 -0
- camel/utils/commons.py +31 -49
- camel/utils/token_counting.py +40 -1
- {camel_ai-0.1.5.4.dist-info → camel_ai-0.1.5.5.dist-info}/METADATA +11 -3
- {camel_ai-0.1.5.4.dist-info → camel_ai-0.1.5.5.dist-info}/RECORD +43 -36
- {camel_ai-0.1.5.4.dist-info → camel_ai-0.1.5.5.dist-info}/WHEEL +0 -0
camel/utils/token_counting.py
CHANGED
|
@@ -51,7 +51,7 @@ def messages_to_prompt(messages: List[OpenAIMessage], model: ModelType) -> str:
|
|
|
51
51
|
system_message = messages[0]["content"]
|
|
52
52
|
|
|
53
53
|
ret: str
|
|
54
|
-
if model == ModelType.LLAMA_2:
|
|
54
|
+
if model == ModelType.LLAMA_2 or model == ModelType.LLAMA_3:
|
|
55
55
|
# reference: https://github.com/facebookresearch/llama/blob/cfc3fc8c1968d390eb830e65c63865e980873a06/llama/generation.py#L212
|
|
56
56
|
seps = [" ", " </s><s>"]
|
|
57
57
|
role_map = {"user": "[INST]", "assistant": "[/INST]"}
|
|
@@ -93,6 +93,45 @@ def messages_to_prompt(messages: List[OpenAIMessage], model: ModelType) -> str:
|
|
|
93
93
|
else:
|
|
94
94
|
ret += role + ":"
|
|
95
95
|
return ret
|
|
96
|
+
elif model == ModelType.GLM_4_OPEN_SOURCE:
|
|
97
|
+
system_prompt = f"[gMASK]<sop><|system|>\n{system_message}"
|
|
98
|
+
ret = system_prompt
|
|
99
|
+
for msg in messages[1:]:
|
|
100
|
+
role = msg["role"]
|
|
101
|
+
content = msg["content"]
|
|
102
|
+
if not isinstance(content, str):
|
|
103
|
+
raise ValueError(
|
|
104
|
+
"Currently multimodal context is not "
|
|
105
|
+
"supported by the token counter."
|
|
106
|
+
)
|
|
107
|
+
if content:
|
|
108
|
+
ret += "<|" + role + "|>" + "\n" + content
|
|
109
|
+
else:
|
|
110
|
+
ret += "<|" + role + "|>" + "\n"
|
|
111
|
+
return ret
|
|
112
|
+
elif model == ModelType.QWEN_2:
|
|
113
|
+
system_prompt = f"<|im_start|>system\n{system_message}<|im_end|>"
|
|
114
|
+
ret = system_prompt + "\n"
|
|
115
|
+
for msg in messages[1:]:
|
|
116
|
+
role = msg["role"]
|
|
117
|
+
content = msg["content"]
|
|
118
|
+
if not isinstance(content, str):
|
|
119
|
+
raise ValueError(
|
|
120
|
+
"Currently multimodal context is not "
|
|
121
|
+
"supported by the token counter."
|
|
122
|
+
)
|
|
123
|
+
if content:
|
|
124
|
+
ret += (
|
|
125
|
+
'<|im_start|>'
|
|
126
|
+
+ role
|
|
127
|
+
+ '\n'
|
|
128
|
+
+ content
|
|
129
|
+
+ '<|im_end|>'
|
|
130
|
+
+ '\n'
|
|
131
|
+
)
|
|
132
|
+
else:
|
|
133
|
+
ret += '<|im_start|>' + role + '\n'
|
|
134
|
+
return ret
|
|
96
135
|
else:
|
|
97
136
|
raise ValueError(f"Invalid model type: {model}")
|
|
98
137
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.1.5.
|
|
3
|
+
Version: 0.1.5.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
|
|
@@ -16,6 +16,7 @@ Provides-Extra: all
|
|
|
16
16
|
Provides-Extra: encoders
|
|
17
17
|
Provides-Extra: graph-storages
|
|
18
18
|
Provides-Extra: huggingface-agent
|
|
19
|
+
Provides-Extra: kv-stroages
|
|
19
20
|
Provides-Extra: model-platforms
|
|
20
21
|
Provides-Extra: retrievers
|
|
21
22
|
Provides-Extra: test
|
|
@@ -31,6 +32,7 @@ Requires-Dist: curl_cffi (==0.6.2)
|
|
|
31
32
|
Requires-Dist: datasets (>=2,<3) ; extra == "huggingface-agent" or extra == "all"
|
|
32
33
|
Requires-Dist: diffusers (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
|
|
33
34
|
Requires-Dist: discord.py (>=2.3.2,<3.0.0) ; extra == "tools" or extra == "all"
|
|
35
|
+
Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "tools" or extra == "all"
|
|
34
36
|
Requires-Dist: docstring-parser (>=0.15,<0.16)
|
|
35
37
|
Requires-Dist: docx2txt (>=0.8,<0.9) ; extra == "tools" or extra == "all"
|
|
36
38
|
Requires-Dist: duckduckgo-search (>=6.1.0,<7.0.0) ; extra == "tools" or extra == "all"
|
|
@@ -38,6 +40,7 @@ Requires-Dist: googlemaps (>=4.10.0,<5.0.0) ; extra == "tools" or extra == "all"
|
|
|
38
40
|
Requires-Dist: imageio[pyav] (>=2.34.2,<3.0.0) ; extra == "tools" or extra == "all"
|
|
39
41
|
Requires-Dist: jsonschema (>=4,<5)
|
|
40
42
|
Requires-Dist: litellm (>=1.38.1,<2.0.0) ; extra == "model-platforms" or extra == "all"
|
|
43
|
+
Requires-Dist: milvus-lite (>=2.4.0,<=2.4.7)
|
|
41
44
|
Requires-Dist: mock (>=5,<6) ; extra == "test"
|
|
42
45
|
Requires-Dist: neo4j (>=5.18.0,<6.0.0) ; extra == "graph-storages" or extra == "all"
|
|
43
46
|
Requires-Dist: newspaper3k (>=0.2.8,<0.3.0) ; extra == "tools" or extra == "all"
|
|
@@ -59,13 +62,14 @@ Requires-Dist: pytest (>=7,<8) ; extra == "test"
|
|
|
59
62
|
Requires-Dist: pytest-asyncio (>=0.23.0,<0.24.0) ; extra == "test"
|
|
60
63
|
Requires-Dist: qdrant-client (>=1.9.0,<2.0.0) ; extra == "vector-databases" or extra == "all"
|
|
61
64
|
Requires-Dist: rank-bm25 (>=0.2.2,<0.3.0) ; extra == "retrievers" or extra == "all"
|
|
65
|
+
Requires-Dist: redis (>=5.0.6,<6.0.0) ; extra == "kv-stroages" or extra == "all"
|
|
62
66
|
Requires-Dist: requests_oauthlib (>=1.3.1,<2.0.0) ; extra == "tools" or extra == "all"
|
|
63
67
|
Requires-Dist: sentence-transformers (>=3.0.1,<4.0.0) ; extra == "encoders" or extra == "all"
|
|
64
68
|
Requires-Dist: sentencepiece (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
|
|
65
69
|
Requires-Dist: slack-sdk (>=3.27.2,<4.0.0) ; extra == "tools" or extra == "all"
|
|
66
70
|
Requires-Dist: soundfile (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
|
|
67
71
|
Requires-Dist: tiktoken (>=0.7.0,<0.8.0)
|
|
68
|
-
Requires-Dist: torch (>=
|
|
72
|
+
Requires-Dist: torch (>=2,<3) ; extra == "huggingface-agent" or extra == "all"
|
|
69
73
|
Requires-Dist: transformers (>=4,<5) ; extra == "huggingface-agent" or extra == "all"
|
|
70
74
|
Requires-Dist: unstructured[all-docs] (>=0.10.30,<0.11.0) ; extra == "tools" or extra == "all"
|
|
71
75
|
Requires-Dist: wikipedia (>=1,<2) ; extra == "tools" or extra == "all"
|
|
@@ -186,7 +190,7 @@ conda create --name camel python=3.9
|
|
|
186
190
|
conda activate camel
|
|
187
191
|
|
|
188
192
|
# Clone github repo
|
|
189
|
-
git clone -b v0.1.5.
|
|
193
|
+
git clone -b v0.1.5.5 https://github.com/camel-ai/camel.git
|
|
190
194
|
|
|
191
195
|
# Change directory into project directory
|
|
192
196
|
cd camel
|
|
@@ -198,6 +202,10 @@ pip install -e .
|
|
|
198
202
|
pip install -e .[all] # (Optional)
|
|
199
203
|
```
|
|
200
204
|
|
|
205
|
+
### From Docker
|
|
206
|
+
|
|
207
|
+
Detailed guidance can be find [here](https://github.com/camel-ai/camel/blob/master/.container/README.md)
|
|
208
|
+
|
|
201
209
|
## Documentation
|
|
202
210
|
|
|
203
211
|
[CAMEL package documentation pages](https://camel-ai.github.io/camel/).
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=SpC9pRp8bm5IPRCPalmZqDISaDVcj64s9RpwgxSeg9E,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=yeSSVTnKbRmA7DUFv2waaPz3rMM6z-Gevi0DoYQ8-Uo,27687
|
|
@@ -12,14 +12,16 @@ camel/agents/task_agent.py,sha256=aNpn8bYoe2VlVSlWfbV6ynI5zG9pXq6V5NcppqJGVlU,14
|
|
|
12
12
|
camel/agents/tool_agents/__init__.py,sha256=ulTNWU2qoFGe3pvVmCq_sdfeSX3NKZ0due66TYvsL-M,862
|
|
13
13
|
camel/agents/tool_agents/base.py,sha256=nQAhfWi8a_bCgzlf5-G-tmj1fKm6AjpRc89NQkWwpnc,1399
|
|
14
14
|
camel/agents/tool_agents/hugging_face_tool_agent.py,sha256=1Z5tG6f_86eL0vmtRZ-BJvoLDFFLhoHt8JtDvgat1xU,8723
|
|
15
|
-
camel/configs/__init__.py,sha256=
|
|
15
|
+
camel/configs/__init__.py,sha256=WW7R8GtyeXqBdYDNbax6XK6M1BfEByQHdYT1K3kDPMo,1383
|
|
16
16
|
camel/configs/anthropic_config.py,sha256=zD7VMFUw4s7wmBlr64oSXxpEUkhp7wj9mvAd0WK2zFc,3308
|
|
17
17
|
camel/configs/base_config.py,sha256=CEF8ryl_dkH6LgOhwuP5_EgjaWCUCB-E3GcMWR-2YFE,870
|
|
18
|
-
camel/configs/litellm_config.py,sha256=
|
|
18
|
+
camel/configs/litellm_config.py,sha256=tfLls2XkKfmejMuPZT-_k2XzMc0GaepDy31XGzPYJ0I,4885
|
|
19
|
+
camel/configs/ollama_config.py,sha256=npjJMe1lIK_WpnVtSnnKzKE78i2bWb6FPPoPa-nJ3Fo,4396
|
|
19
20
|
camel/configs/openai_config.py,sha256=tFEiPDQ8Cdvkfds83T7_5osNikwA3NuRGbpjV0wq4Ao,7593
|
|
21
|
+
camel/configs/zhipuai_config.py,sha256=5JNhOjDexD6wzOMb3-diDaCa-IYXoiU0II0QpyV7Qdo,3769
|
|
20
22
|
camel/embeddings/__init__.py,sha256=9TI7392iYxrlYYerPoboDBOFvpEmP_nSSgtEjks1vJQ,1034
|
|
21
23
|
camel/embeddings/base.py,sha256=deX70VXGmWGRAPal3HheXvMaarymRR5I1i90KPWGWXs,2196
|
|
22
|
-
camel/embeddings/openai_embedding.py,sha256=
|
|
24
|
+
camel/embeddings/openai_embedding.py,sha256=Eh7Hbj6bWMTrX0Tze2IgPdD3-v9aRoBeE8AifG3jF8A,3332
|
|
23
25
|
camel/embeddings/sentence_transformers_embeddings.py,sha256=ayYIBOADdmmhlmo1iZS8tI_mZ-rX0sxjljyQpkuftcw,2730
|
|
24
26
|
camel/embeddings/vlm_embedding.py,sha256=VvD_b737snNrZTRE4ejFvWLjd_YT1DCTKl8yKIgRM-g,5436
|
|
25
27
|
camel/functions/__init__.py,sha256=3d1ZI3xx67DvHeBQhQQAu7IwTohC6Sa-_EPZeDE8_50,1737
|
|
@@ -53,20 +55,22 @@ camel/functions/open_api_specs/web_scraper/paths/__init__.py,sha256=f3LXNDzN2XWW
|
|
|
53
55
|
camel/functions/open_api_specs/web_scraper/paths/scraper.py,sha256=SQGbFkshLN4xm-Ya49ssbSvaU1nFVNFYhWsEPYVeFe0,1123
|
|
54
56
|
camel/functions/openai_function.py,sha256=NyN8LBKdNeWizR7SnOp6VwEQhq29OJgskFfXq8EzIFg,14948
|
|
55
57
|
camel/functions/retrieval_functions.py,sha256=ZBwQhBeun86k6AnMDCpf0U-JYNaU0alDJAS1hdnumAQ,2281
|
|
56
|
-
camel/functions/search_functions.py,sha256=
|
|
57
|
-
camel/functions/slack_functions.py,sha256=
|
|
58
|
-
camel/functions/twitter_function.py,sha256=
|
|
59
|
-
camel/functions/weather_functions.py,sha256=
|
|
58
|
+
camel/functions/search_functions.py,sha256=LtIGHsZLUveTMkdlaonlNoqFK_Sx1yGujdySeL1-kfg,10882
|
|
59
|
+
camel/functions/slack_functions.py,sha256=XQZnGHLURKcmtiqN1mxsBxdCbG4i8ArX8MnnNn91GQc,8988
|
|
60
|
+
camel/functions/twitter_function.py,sha256=hN8FR0bUtd0RLlCK8MFRDwFbbukYGTry9WhVKQEV_Y8,17121
|
|
61
|
+
camel/functions/weather_functions.py,sha256=CKBh8hS8ylUIAlEH6HlrjdgjLuzT-GM4WcvCBATMl0g,5774
|
|
60
62
|
camel/generators.py,sha256=tcYDoHwSKN0rBiu7u4rWN9pb61O8OaclrNaasCqHSJM,10437
|
|
61
63
|
camel/human.py,sha256=W_T7PSO-ReiJbC5JMX1wPrpt6LVFBqoNEwUdjDScG1M,4963
|
|
62
|
-
camel/interpreters/__init__.py,sha256=
|
|
64
|
+
camel/interpreters/__init__.py,sha256=rHuOgwyWDLsuRzPLZ_WZteFBb_-zp4G-xfnDP7VFRC8,1115
|
|
63
65
|
camel/interpreters/base.py,sha256=JZpQmxYBflPcDerj-R6TB6nnKvhnZR3Drraxo84JuxE,1904
|
|
66
|
+
camel/interpreters/docker_interpreter.py,sha256=Lsq5XxcDCAvxoDcVnog8tyvKIervI5aEkPXLTLQqeh4,8441
|
|
64
67
|
camel/interpreters/internal_python_interpreter.py,sha256=ZbVmSB2zvWbvvTOL0xpDlJel-I9rv13w1rP4RvtpNiE,21866
|
|
65
68
|
camel/interpreters/interpreter_error.py,sha256=4pI_dKohUKcQOrqJafolyjRfOHwBUuUBXCwwD46P4wE,886
|
|
66
69
|
camel/interpreters/subprocess_interpreter.py,sha256=nKxFXZJ9zGYlKdNlz6Ln7bvg65ejKZ8yAHgIFuR2WzM,6835
|
|
67
|
-
camel/loaders/__init__.py,sha256=
|
|
68
|
-
camel/loaders/base_io.py,sha256=
|
|
69
|
-
camel/loaders/
|
|
70
|
+
camel/loaders/__init__.py,sha256=IeNDC84goWnYHFyuImIkwe-9nbnuFfTySXz8ghloEp0,920
|
|
71
|
+
camel/loaders/base_io.py,sha256=LSke5Pje3GyA9JJJMAo1Ib9P07FtTYUr3a9RG9Mzr7c,8487
|
|
72
|
+
camel/loaders/jina_url_reader.py,sha256=PNl3fuU_7TkmuxaDnoW5pLnOi8XRnb7wlXA4FudWIbE,3620
|
|
73
|
+
camel/loaders/unstructured_io.py,sha256=Y4epnItSnd7BXMdt3b9L7Q3PRTKBldX6nzgAJTG6Z5A,25363
|
|
70
74
|
camel/memories/__init__.py,sha256=ml1Uj4Y_1Q2LfrTXOY38niF0x1H-N-u_zoN_VvR939U,1364
|
|
71
75
|
camel/memories/agent_memories.py,sha256=XxZCNSqMy2zME-vYjy9EBpQc9WzW1vOIFwdAoxImvtY,6110
|
|
72
76
|
camel/memories/base.py,sha256=kbyAmKkOfFdOKfHxwao8bIAbRSuOEXyzxPFd0NlvUCE,5003
|
|
@@ -80,17 +84,17 @@ camel/messages/__init__.py,sha256=djLvpz6AmjeLzuUSQl7J6T2O4x8MwSdcH0l9fbj_3yg,14
|
|
|
80
84
|
camel/messages/base.py,sha256=1cyYITXxBsp2UCdOjF1Ky4W_PgRegEfitqbrF9PjUPs,13721
|
|
81
85
|
camel/messages/func_message.py,sha256=CCVkbz-2pdxXV0vBETI0xt7d7uiN8zACpRI7lCnfTFQ,3841
|
|
82
86
|
camel/models/__init__.py,sha256=RfAHcSSaBUAilObQIU07uICxaujjeO5EwLv4Pg0vrPc,1408
|
|
83
|
-
camel/models/anthropic_model.py,sha256=
|
|
87
|
+
camel/models/anthropic_model.py,sha256=mypGlcn2koBFf3FsgBAqOqWwxvY-c1prINr5nYvjvts,5540
|
|
84
88
|
camel/models/base_model.py,sha256=TMbS44Fn-6m0OlrxYCtvwKqGUM_4Jz2y6kX-P28nOeI,4030
|
|
85
|
-
camel/models/litellm_model.py,sha256=
|
|
86
|
-
camel/models/model_factory.py,sha256=
|
|
87
|
-
camel/models/nemotron_model.py,sha256=
|
|
88
|
-
camel/models/ollama_model.py,sha256=
|
|
89
|
+
camel/models/litellm_model.py,sha256=3o8ImWSYc_a_3rXA_y5Hh562SzNVyfCmVj9B2pMN78k,4902
|
|
90
|
+
camel/models/model_factory.py,sha256=EFc5_M68AVfi34VhPeftaiWfTR9dDRHUxsJ1F81RxhQ,3949
|
|
91
|
+
camel/models/nemotron_model.py,sha256=2Idf4wrZervxvfu6av42EKjefFtDnBb6cKnWCJUkqI4,2682
|
|
92
|
+
camel/models/ollama_model.py,sha256=n6Ra4virpjqEZr3rnXwFVScN4WFj3psksEPGadvyk88,4151
|
|
89
93
|
camel/models/open_source_model.py,sha256=r8TGq-9xAwOANZ5s_y3fJUGAvS0zDg03RmbZ8X2ga-E,6156
|
|
90
|
-
camel/models/openai_audio_models.py,sha256=
|
|
91
|
-
camel/models/openai_model.py,sha256
|
|
94
|
+
camel/models/openai_audio_models.py,sha256=_ddOxqzFZCVZaK6h33Z0THU6HXk2XlJTxVWquZ3oOaQ,10042
|
|
95
|
+
camel/models/openai_model.py,sha256=RtUxWEOO9Mn1ClXep2eVgaZxTA4cgXttndF_O-9ulgs,4403
|
|
92
96
|
camel/models/stub_model.py,sha256=kyFXy9WyHgjnXDFO8Sag4q023lHGu4D0vyzfkGTSi9w,3704
|
|
93
|
-
camel/models/zhipuai_model.py,sha256=
|
|
97
|
+
camel/models/zhipuai_model.py,sha256=aB1bad4VxTqzlj75PtX2jIsXgiGi4tPnGPO_YVNqkck,4766
|
|
94
98
|
camel/prompts/__init__.py,sha256=tvN1pz132rgjV_C4MoVrSMTqgtOP0SzdfzAPX8rjpaQ,2049
|
|
95
99
|
camel/prompts/ai_society.py,sha256=ApgvIED1Z_mdsWDNc2_u35Ktp7pEKksMrOIQKo_q5cI,6306
|
|
96
100
|
camel/prompts/base.py,sha256=VMde6w97zHPP03OA628wGwXhtJweoccOK1B1f3aESDo,8464
|
|
@@ -110,39 +114,42 @@ camel/responses/agent_responses.py,sha256=UsTZHi4jPs2wfChPQWttVNyHneoGdQtdrRouat
|
|
|
110
114
|
camel/retrievers/__init__.py,sha256=CuP3B77zl2PoF-W2y9xSkTGRzoK2J4TlUHdCtuJD8dg,1059
|
|
111
115
|
camel/retrievers/auto_retriever.py,sha256=3UPGsGXIkEclg75Fj-EbW0Y8_jrBK8Li2lA0NBn-O-8,13467
|
|
112
116
|
camel/retrievers/base.py,sha256=sgqaJDwIkWluEgPBlukFN7RYZJnrp0imCAOEWm6bZ40,2646
|
|
113
|
-
camel/retrievers/bm25_retriever.py,sha256
|
|
114
|
-
camel/retrievers/cohere_rerank_retriever.py,sha256=
|
|
117
|
+
camel/retrievers/bm25_retriever.py,sha256=qM1oCQ-fak3izEjQVn18t0aceW-W8cRKbaYPwcHrEjI,5067
|
|
118
|
+
camel/retrievers/cohere_rerank_retriever.py,sha256=HvnFqXpsX9EdBOab0kFLDyxxJnknPFMVxyQJQDlHbOA,4100
|
|
115
119
|
camel/retrievers/vector_retriever.py,sha256=PhPIUyjffOojwYiATEY1lsCQO9yDmpc8k-R4sAt5IvY,7316
|
|
116
120
|
camel/societies/__init__.py,sha256=JhGwUHjht4CewzC3shKuxmgB3oS7FIxIxmiKyhNsfIs,832
|
|
117
121
|
camel/societies/babyagi_playing.py,sha256=0sDe65XbGGWQOe4I758sH-sAk1Hf82Y_qawjaEbbBXE,11791
|
|
118
122
|
camel/societies/role_playing.py,sha256=C5hQIPH8gwP7_dkh65nOPplsw50lYQiYXk-aapODqMY,21983
|
|
119
|
-
camel/storages/__init__.py,sha256=
|
|
123
|
+
camel/storages/__init__.py,sha256=ghlDZ1cF3O_QxwX9xIIZ__bnHcUjh7dbAF1X_ivkofc,1551
|
|
120
124
|
camel/storages/graph_storages/__init__.py,sha256=vsJZkedaCS-cLQ-KgMqio8cxXvbousBWVqzZJvlimT8,897
|
|
121
125
|
camel/storages/graph_storages/base.py,sha256=-Ys1BIuz4H5FvYMZTBIjg8Cfv40CPQ-OsovwMzygEgU,2858
|
|
122
126
|
camel/storages/graph_storages/graph_element.py,sha256=cz3eQdSockPsJwEVo6R_X_QeuS81_x5XrZjpzK1Q7cw,2599
|
|
123
|
-
camel/storages/graph_storages/neo4j_graph.py,sha256=
|
|
124
|
-
camel/storages/key_value_storages/__init__.py,sha256=
|
|
127
|
+
camel/storages/graph_storages/neo4j_graph.py,sha256=O2L6vUUaqZcOPRo-VgRSzBSUQe6IAZjVv0U2pMB6KL4,21950
|
|
128
|
+
camel/storages/key_value_storages/__init__.py,sha256=v3Wy3CAJNgrPyBV4miOC6TxQDL-PYdGW8HbqiYl7k00,968
|
|
125
129
|
camel/storages/key_value_storages/base.py,sha256=knxni8WiyTXJ2emZQO-JIsbxw6Ei7EO6dj-bU2YCoSY,2183
|
|
126
130
|
camel/storages/key_value_storages/in_memory.py,sha256=pAcKkVd7jlPS6seR31agdyjx9TNIIRMIyx497XWXwbs,1955
|
|
127
131
|
camel/storages/key_value_storages/json.py,sha256=BlOhuyWbSjzKixtA5e9O0z8BFK4pi96OcPNxnFfDPQw,3471
|
|
132
|
+
camel/storages/key_value_storages/redis.py,sha256=nQmdVUTLL0bW3hDeX5k-V2XKv0n6wuvbBxlrBmWVbpw,5706
|
|
128
133
|
camel/storages/vectordb_storages/__init__.py,sha256=hEhPyCPlzyXUsDFDzKRdLBj09rO1b5bsn76AJrDcaG4,1076
|
|
129
134
|
camel/storages/vectordb_storages/base.py,sha256=BS1QPz11ZUBVtn_M7j1Q0GW0Ya_ILai4Y2o1UPW9bAM,6009
|
|
130
|
-
camel/storages/vectordb_storages/milvus.py,sha256=
|
|
131
|
-
camel/storages/vectordb_storages/qdrant.py,sha256=
|
|
135
|
+
camel/storages/vectordb_storages/milvus.py,sha256=F3wBsvERSHaYpa3FaBkiKkdi6jxcrH7wDRlSQP6DXx0,13492
|
|
136
|
+
camel/storages/vectordb_storages/qdrant.py,sha256=k2aCM1goLS9vllcgvk8bBQJ_sHf81G0C5UcyURTDCmo,13468
|
|
132
137
|
camel/terminators/__init__.py,sha256=pE7fcfDUNngdbm1BhzSQPRMXNbdd28rl9YbF4gKWwXE,997
|
|
133
138
|
camel/terminators/base.py,sha256=TSkl3maNEsdjyAniJaSgFfD4UF8RQ1LwNIiGw0dN8Gg,1396
|
|
134
139
|
camel/terminators/response_terminator.py,sha256=zcXuigbvlclUoBv4xcVbfU36ZohUT1RhI-rSnukloUY,4951
|
|
135
140
|
camel/terminators/token_limit_terminator.py,sha256=mK30wVUnoqNAvIo-wxkqY5gUSNay2M04rsAktKqoiOI,2087
|
|
136
|
-
camel/toolkits/__init__.py,sha256=
|
|
141
|
+
camel/toolkits/__init__.py,sha256=_PA4kkQrmIT1J5b-gnOB-thYOVAZKhpqI5Vj4MIR-jE,913
|
|
137
142
|
camel/toolkits/base.py,sha256=znjnZtgxA5gbT7OMnrKQF_a9FK3A7Xk5s_lP94u76vI,923
|
|
138
|
-
camel/toolkits/
|
|
143
|
+
camel/toolkits/code_execution.py,sha256=pwWwZQ5etSghdWUZAg5Wao7l2GC7FYHXiVJfr0tM66E,2426
|
|
144
|
+
camel/toolkits/github_toolkit.py,sha256=NT6gGqy5kV7AGgiJVHAuhlcZxSkTiSJu6f1sm6n-0PU,11516
|
|
139
145
|
camel/types/__init__.py,sha256=ArKXATj3z_Vv4ISmROVeo6Mv3tj5kE1dTkqfgwyxVY4,1975
|
|
140
|
-
camel/types/enums.py,sha256=
|
|
146
|
+
camel/types/enums.py,sha256=77O6gCE5YWgqRIND50QMHopsgQ8Ksu5iqfaY4HbOqRU,11876
|
|
141
147
|
camel/types/openai_types.py,sha256=BNQ6iCzKTjSvgcXFsAFIgrUS_YUFZBU6bDoyAp387hI,2045
|
|
142
|
-
camel/utils/__init__.py,sha256=
|
|
143
|
-
camel/utils/
|
|
148
|
+
camel/utils/__init__.py,sha256=hD5gV-vYs_otMnQY0ZOuHoJ4iVkmCh2PgBCkYNgIm0Y,1817
|
|
149
|
+
camel/utils/async_func.py,sha256=q8t7vq_Yd_i5i0b2Mce9d7-hrH70WrtQbqa-T4wYwQU,1595
|
|
150
|
+
camel/utils/commons.py,sha256=J7AOOh5huQkwTvjDt_gpiXNTXnuk0yM_hdtRU8clpNE,11298
|
|
144
151
|
camel/utils/constants.py,sha256=ZIw5ILfOyJFyjEAYrbJMANeg1_EZI-zMK_xVrkwALbM,1105
|
|
145
|
-
camel/utils/token_counting.py,sha256=
|
|
146
|
-
camel_ai-0.1.5.
|
|
147
|
-
camel_ai-0.1.5.
|
|
148
|
-
camel_ai-0.1.5.
|
|
152
|
+
camel/utils/token_counting.py,sha256=umFg9UhUpmM9Fu5nbC29UhXuc9iy8b8aKWOYGDEeRcg,15856
|
|
153
|
+
camel_ai-0.1.5.5.dist-info/METADATA,sha256=6y14QJuQrAcvFhszMRfROf3yB1ww3bWcFTChl0I43N8,21966
|
|
154
|
+
camel_ai-0.1.5.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
155
|
+
camel_ai-0.1.5.5.dist-info/RECORD,,
|
|
File without changes
|