camel-ai 0.2.45__py3-none-any.whl → 0.2.47__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/bedrock_config.py +73 -0
- camel/configs/lmstudio_config.py +94 -0
- camel/configs/qwen_config.py +3 -3
- camel/datasets/few_shot_generator.py +19 -3
- camel/datasets/models.py +1 -1
- camel/loaders/__init__.py +2 -0
- camel/loaders/scrapegraph_reader.py +96 -0
- camel/models/__init__.py +4 -0
- camel/models/aiml_model.py +11 -104
- camel/models/anthropic_model.py +11 -76
- camel/models/aws_bedrock_model.py +112 -0
- camel/models/deepseek_model.py +11 -44
- camel/models/gemini_model.py +10 -72
- camel/models/groq_model.py +11 -131
- camel/models/internlm_model.py +11 -61
- camel/models/lmstudio_model.py +82 -0
- camel/models/model_factory.py +7 -1
- camel/models/modelscope_model.py +11 -122
- camel/models/moonshot_model.py +10 -76
- camel/models/nemotron_model.py +4 -60
- camel/models/nvidia_model.py +11 -111
- camel/models/ollama_model.py +12 -205
- camel/models/openai_compatible_model.py +51 -12
- camel/models/openai_model.py +3 -1
- camel/models/openrouter_model.py +12 -131
- camel/models/ppio_model.py +10 -99
- camel/models/qwen_model.py +11 -122
- camel/models/reka_model.py +1 -1
- camel/models/sglang_model.py +5 -3
- camel/models/siliconflow_model.py +10 -58
- camel/models/togetherai_model.py +10 -177
- camel/models/vllm_model.py +11 -218
- camel/models/volcano_model.py +1 -15
- camel/models/yi_model.py +11 -98
- camel/models/zhipuai_model.py +11 -102
- camel/storages/__init__.py +2 -0
- camel/storages/vectordb_storages/__init__.py +2 -0
- camel/storages/vectordb_storages/oceanbase.py +458 -0
- camel/toolkits/__init__.py +4 -0
- camel/toolkits/browser_toolkit.py +4 -7
- camel/toolkits/jina_reranker_toolkit.py +231 -0
- camel/toolkits/pyautogui_toolkit.py +428 -0
- camel/toolkits/search_toolkit.py +167 -0
- camel/toolkits/video_analysis_toolkit.py +215 -80
- camel/toolkits/video_download_toolkit.py +10 -3
- camel/types/enums.py +70 -0
- camel/types/unified_model_type.py +10 -0
- camel/utils/token_counting.py +7 -3
- {camel_ai-0.2.45.dist-info → camel_ai-0.2.47.dist-info}/METADATA +13 -1
- {camel_ai-0.2.45.dist-info → camel_ai-0.2.47.dist-info}/RECORD +54 -46
- {camel_ai-0.2.45.dist-info → camel_ai-0.2.47.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.45.dist-info → camel_ai-0.2.47.dist-info}/licenses/LICENSE +0 -0
camel/types/enums.py
CHANGED
|
@@ -42,6 +42,17 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
42
42
|
GPT_4_1 = "gpt-4.1-2025-04-14"
|
|
43
43
|
GPT_4_1_MINI = "gpt-4.1-mini-2025-04-14"
|
|
44
44
|
GPT_4_1_NANO = "gpt-4.1-nano-2025-04-14"
|
|
45
|
+
O4_MINI = "o4-mini"
|
|
46
|
+
O3 = "o3"
|
|
47
|
+
|
|
48
|
+
AWS_CLAUDE_3_7_SONNET = "anthropic.claude-3-7-sonnet-20250219-v1:0"
|
|
49
|
+
AWS_CLAUDE_3_5_SONNET = "anthropic.claude-3-5-sonnet-20241022-v2:0"
|
|
50
|
+
AWS_CLAUDE_3_HAIKU = "anthropic.claude-3-haiku-20240307-v1:0"
|
|
51
|
+
AWS_CLAUDE_3_SONNET = "anthropic.claude-3-sonnet-20240229-v1:0"
|
|
52
|
+
AWS_DEEPSEEK_R1 = "us.deepseek.r1-v1:0"
|
|
53
|
+
AWS_LLAMA_3_3_70B_INSTRUCT = "us.meta.llama3-3-70b-instruct-v1:0"
|
|
54
|
+
AWS_LLAMA_3_2_90B_INSTRUCT = "us.meta.llama3-2-90b-instruct-v1:0"
|
|
55
|
+
AWS_LLAMA_3_2_11B_INSTRUCT = "us.meta.llama3-2-11b-instruct-v1:0"
|
|
45
56
|
|
|
46
57
|
GLM_4 = "glm-4"
|
|
47
58
|
GLM_4V = "glm-4v"
|
|
@@ -75,6 +86,12 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
75
86
|
OPENROUTER_LLAMA_4_SCOUT_FREE = "meta-llama/llama-4-scout:free"
|
|
76
87
|
OPENROUTER_OLYMPICODER_7B = "open-r1/olympiccoder-7b:free"
|
|
77
88
|
|
|
89
|
+
# LMStudio models
|
|
90
|
+
LMSTUDIO_GEMMA_3_1B = "gemma-3-1b"
|
|
91
|
+
LMSTUDIO_GEMMA_3_4B = "gemma-3-4b"
|
|
92
|
+
LMSTUDIO_GEMMA_3_12B = "gemma-3-12b"
|
|
93
|
+
LMSTUDIO_GEMMA_3_27B = "gemma-3-27b"
|
|
94
|
+
|
|
78
95
|
# TogetherAI platform models support tool calling
|
|
79
96
|
TOGETHER_LLAMA_3_1_8B = "meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo"
|
|
80
97
|
TOGETHER_LLAMA_3_1_70B = "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo"
|
|
@@ -308,6 +325,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
308
325
|
self.is_sambanova,
|
|
309
326
|
self.is_groq,
|
|
310
327
|
self.is_openrouter,
|
|
328
|
+
self.is_lmstudio,
|
|
311
329
|
self.is_sglang,
|
|
312
330
|
self.is_moonshot,
|
|
313
331
|
self.is_siliconflow,
|
|
@@ -335,6 +353,22 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
335
353
|
ModelType.GPT_4_1,
|
|
336
354
|
ModelType.GPT_4_1_MINI,
|
|
337
355
|
ModelType.GPT_4_1_NANO,
|
|
356
|
+
ModelType.O4_MINI,
|
|
357
|
+
ModelType.O3,
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
@property
|
|
361
|
+
def is_aws_bedrock(self) -> bool:
|
|
362
|
+
r"""Returns whether this type of models is an AWS Bedrock model."""
|
|
363
|
+
return self in {
|
|
364
|
+
ModelType.AWS_CLAUDE_3_7_SONNET,
|
|
365
|
+
ModelType.AWS_CLAUDE_3_5_SONNET,
|
|
366
|
+
ModelType.AWS_CLAUDE_3_HAIKU,
|
|
367
|
+
ModelType.AWS_CLAUDE_3_SONNET,
|
|
368
|
+
ModelType.AWS_DEEPSEEK_R1,
|
|
369
|
+
ModelType.AWS_LLAMA_3_3_70B_INSTRUCT,
|
|
370
|
+
ModelType.AWS_LLAMA_3_2_90B_INSTRUCT,
|
|
371
|
+
ModelType.AWS_LLAMA_3_2_11B_INSTRUCT,
|
|
338
372
|
}
|
|
339
373
|
|
|
340
374
|
@property
|
|
@@ -414,6 +448,16 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
414
448
|
ModelType.OPENROUTER_OLYMPICODER_7B,
|
|
415
449
|
}
|
|
416
450
|
|
|
451
|
+
@property
|
|
452
|
+
def is_lmstudio(self) -> bool:
|
|
453
|
+
r"""Returns whether this type of models is served by LMStudio."""
|
|
454
|
+
return self in {
|
|
455
|
+
ModelType.LMSTUDIO_GEMMA_3_1B,
|
|
456
|
+
ModelType.LMSTUDIO_GEMMA_3_4B,
|
|
457
|
+
ModelType.LMSTUDIO_GEMMA_3_12B,
|
|
458
|
+
ModelType.LMSTUDIO_GEMMA_3_27B,
|
|
459
|
+
}
|
|
460
|
+
|
|
417
461
|
@property
|
|
418
462
|
def is_together(self) -> bool:
|
|
419
463
|
r"""Returns whether this type of models is served by Together AI."""
|
|
@@ -690,6 +734,10 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
690
734
|
ModelType.GLM_4V_FLASH,
|
|
691
735
|
ModelType.GLM_4_AIRX,
|
|
692
736
|
ModelType.OPENROUTER_OLYMPICODER_7B,
|
|
737
|
+
ModelType.LMSTUDIO_GEMMA_3_1B,
|
|
738
|
+
ModelType.LMSTUDIO_GEMMA_3_4B,
|
|
739
|
+
ModelType.LMSTUDIO_GEMMA_3_12B,
|
|
740
|
+
ModelType.LMSTUDIO_GEMMA_3_27B,
|
|
693
741
|
}:
|
|
694
742
|
return 8_192
|
|
695
743
|
elif self in {
|
|
@@ -765,6 +813,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
765
813
|
ModelType.PPIO_DEEPSEEK_V3_COMMUNITY,
|
|
766
814
|
ModelType.PPIO_DEEPSEEK_R1,
|
|
767
815
|
ModelType.PPIO_DEEPSEEK_V3,
|
|
816
|
+
ModelType.AWS_DEEPSEEK_R1,
|
|
768
817
|
}:
|
|
769
818
|
return 64_000
|
|
770
819
|
elif self in {
|
|
@@ -811,6 +860,9 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
811
860
|
ModelType.GLM_4_AIR_0111,
|
|
812
861
|
ModelType.GLM_4_FLASHX,
|
|
813
862
|
ModelType.GLM_4_FLASH,
|
|
863
|
+
ModelType.AWS_LLAMA_3_3_70B_INSTRUCT,
|
|
864
|
+
ModelType.AWS_LLAMA_3_2_90B_INSTRUCT,
|
|
865
|
+
ModelType.AWS_LLAMA_3_2_11B_INSTRUCT,
|
|
814
866
|
}:
|
|
815
867
|
return 128_000
|
|
816
868
|
elif self in {
|
|
@@ -841,6 +893,12 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
841
893
|
ModelType.CLAUDE_3_5_HAIKU,
|
|
842
894
|
ModelType.CLAUDE_3_7_SONNET,
|
|
843
895
|
ModelType.YI_MEDIUM_200K,
|
|
896
|
+
ModelType.AWS_CLAUDE_3_5_SONNET,
|
|
897
|
+
ModelType.AWS_CLAUDE_3_HAIKU,
|
|
898
|
+
ModelType.AWS_CLAUDE_3_SONNET,
|
|
899
|
+
ModelType.AWS_CLAUDE_3_7_SONNET,
|
|
900
|
+
ModelType.O4_MINI,
|
|
901
|
+
ModelType.O3,
|
|
844
902
|
}:
|
|
845
903
|
return 200_000
|
|
846
904
|
elif self in {
|
|
@@ -1034,12 +1092,14 @@ class ModelPlatformType(Enum):
|
|
|
1034
1092
|
DEFAULT = os.getenv("DEFAULT_MODEL_PLATFORM_TYPE", "openai")
|
|
1035
1093
|
|
|
1036
1094
|
OPENAI = "openai"
|
|
1095
|
+
AWS_BEDROCK = "aws-bedrock"
|
|
1037
1096
|
AZURE = "azure"
|
|
1038
1097
|
ANTHROPIC = "anthropic"
|
|
1039
1098
|
GROQ = "groq"
|
|
1040
1099
|
OPENROUTER = "openrouter"
|
|
1041
1100
|
OLLAMA = "ollama"
|
|
1042
1101
|
LITELLM = "litellm"
|
|
1102
|
+
LMSTUDIO = "lmstudio"
|
|
1043
1103
|
ZHIPU = "zhipuai"
|
|
1044
1104
|
GEMINI = "gemini"
|
|
1045
1105
|
VLLM = "vllm"
|
|
@@ -1075,6 +1135,11 @@ class ModelPlatformType(Enum):
|
|
|
1075
1135
|
r"""Returns whether this platform is openai."""
|
|
1076
1136
|
return self is ModelPlatformType.OPENAI
|
|
1077
1137
|
|
|
1138
|
+
@property
|
|
1139
|
+
def is_aws_bedrock(self) -> bool:
|
|
1140
|
+
r"""Returns whether this platform is aws-bedrock."""
|
|
1141
|
+
return self is ModelPlatformType.AWS_BEDROCK
|
|
1142
|
+
|
|
1078
1143
|
@property
|
|
1079
1144
|
def is_azure(self) -> bool:
|
|
1080
1145
|
r"""Returns whether this platform is azure."""
|
|
@@ -1095,6 +1160,11 @@ class ModelPlatformType(Enum):
|
|
|
1095
1160
|
r"""Returns whether this platform is openrouter."""
|
|
1096
1161
|
return self is ModelPlatformType.OPENROUTER
|
|
1097
1162
|
|
|
1163
|
+
@property
|
|
1164
|
+
def is_lmstudio(self) -> bool:
|
|
1165
|
+
r"""Returns whether this platform is lmstudio."""
|
|
1166
|
+
return self is ModelPlatformType.LMSTUDIO
|
|
1167
|
+
|
|
1098
1168
|
@property
|
|
1099
1169
|
def is_ollama(self) -> bool:
|
|
1100
1170
|
r"""Returns whether this platform is ollama."""
|
|
@@ -63,6 +63,11 @@ class UnifiedModelType(str):
|
|
|
63
63
|
r"""Returns whether the model is an OpenAI model."""
|
|
64
64
|
return True
|
|
65
65
|
|
|
66
|
+
@property
|
|
67
|
+
def is_aws_bedrock(self) -> bool:
|
|
68
|
+
r"""Returns whether the model is an AWS Bedrock model."""
|
|
69
|
+
return True
|
|
70
|
+
|
|
66
71
|
@property
|
|
67
72
|
def is_anthropic(self) -> bool:
|
|
68
73
|
r"""Returns whether the model is an Anthropic model."""
|
|
@@ -83,6 +88,11 @@ class UnifiedModelType(str):
|
|
|
83
88
|
r"""Returns whether the model is a OpenRouter served model."""
|
|
84
89
|
return True
|
|
85
90
|
|
|
91
|
+
@property
|
|
92
|
+
def is_lmstudio(self) -> bool:
|
|
93
|
+
r"""Returns whether the model is a LMStudio served model."""
|
|
94
|
+
return True
|
|
95
|
+
|
|
86
96
|
@property
|
|
87
97
|
def is_ppio(self) -> bool:
|
|
88
98
|
r"""Returns whether the model is a PPIO served model."""
|
camel/utils/token_counting.py
CHANGED
|
@@ -136,7 +136,11 @@ class OpenAITokenCounter(BaseTokenCounter):
|
|
|
136
136
|
elif ("gpt-3.5-turbo" in self.model) or ("gpt-4" in self.model):
|
|
137
137
|
self.tokens_per_message = 3
|
|
138
138
|
self.tokens_per_name = 1
|
|
139
|
-
elif (
|
|
139
|
+
elif (
|
|
140
|
+
("o1" in self.model)
|
|
141
|
+
or ("o3" in self.model)
|
|
142
|
+
or ("o4" in self.model)
|
|
143
|
+
):
|
|
140
144
|
self.tokens_per_message = 2
|
|
141
145
|
self.tokens_per_name = 1
|
|
142
146
|
else:
|
|
@@ -144,8 +148,8 @@ class OpenAITokenCounter(BaseTokenCounter):
|
|
|
144
148
|
raise NotImplementedError(
|
|
145
149
|
"Token counting for OpenAI Models is not presently "
|
|
146
150
|
f"implemented for model {model}. "
|
|
147
|
-
"See https://github.com/openai/openai-python/blob/main/chatml
|
|
148
|
-
"for information on how messages are converted to tokens. "
|
|
151
|
+
"See https://github.com/openai/openai-python/blob/main/chatml"
|
|
152
|
+
".md for information on how messages are converted to tokens. "
|
|
149
153
|
"See https://platform.openai.com/docs/models/gpt-4"
|
|
150
154
|
"or https://platform.openai.com/docs/models/gpt-3-5"
|
|
151
155
|
"for information about openai chat models."
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.47
|
|
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
|
|
@@ -84,10 +84,12 @@ Requires-Dist: playwright>=1.50.0; extra == 'all'
|
|
|
84
84
|
Requires-Dist: prance<24,>=23.6.21.0; extra == 'all'
|
|
85
85
|
Requires-Dist: praw<8,>=7.7.1; extra == 'all'
|
|
86
86
|
Requires-Dist: pre-commit<4,>=3; extra == 'all'
|
|
87
|
+
Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'all'
|
|
87
88
|
Requires-Dist: pydub<0.26,>=0.25.1; extra == 'all'
|
|
88
89
|
Requires-Dist: pygithub<3,>=2.6.0; extra == 'all'
|
|
89
90
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'all'
|
|
90
91
|
Requires-Dist: pymupdf<2,>=1.22.5; extra == 'all'
|
|
92
|
+
Requires-Dist: pyobvector>=0.1.18; extra == 'all'
|
|
91
93
|
Requires-Dist: pyowm<4,>=3.3.0; extra == 'all'
|
|
92
94
|
Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'all'
|
|
93
95
|
Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'all'
|
|
@@ -102,6 +104,7 @@ Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'all'
|
|
|
102
104
|
Requires-Dist: rouge<2,>=1.0.1; extra == 'all'
|
|
103
105
|
Requires-Dist: scenedetect>=0.6.5.2; extra == 'all'
|
|
104
106
|
Requires-Dist: scholarly[tor]==1.7.11; extra == 'all'
|
|
107
|
+
Requires-Dist: scrapegraph-py<2,>=1.12.0; extra == 'all'
|
|
105
108
|
Requires-Dist: sentence-transformers<4,>=3.0.1; extra == 'all'
|
|
106
109
|
Requires-Dist: sentencepiece<0.3,>=0.2; extra == 'all'
|
|
107
110
|
Requires-Dist: slack-bolt<2,>=1.20.1; extra == 'all'
|
|
@@ -252,6 +255,7 @@ Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'owl'
|
|
|
252
255
|
Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'owl'
|
|
253
256
|
Requires-Dist: rouge<2,>=1.0.1; extra == 'owl'
|
|
254
257
|
Requires-Dist: scenedetect>=0.6.5.2; extra == 'owl'
|
|
258
|
+
Requires-Dist: scrapegraph-py<2,>=1.12.0; extra == 'owl'
|
|
255
259
|
Requires-Dist: sentencepiece<0.3,>=0.2; extra == 'owl'
|
|
256
260
|
Requires-Dist: soundfile<0.14,>=0.13; extra == 'owl'
|
|
257
261
|
Requires-Dist: tabulate>=0.9.0; extra == 'owl'
|
|
@@ -271,6 +275,7 @@ Requires-Dist: neo4j<6,>=5.18.0; extra == 'rag'
|
|
|
271
275
|
Requires-Dist: numpy~=1.26; extra == 'rag'
|
|
272
276
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'rag'
|
|
273
277
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'rag'
|
|
278
|
+
Requires-Dist: pyobvector>=0.1.18; extra == 'rag'
|
|
274
279
|
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'rag'
|
|
275
280
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'rag'
|
|
276
281
|
Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'rag'
|
|
@@ -288,6 +293,7 @@ Requires-Dist: mem0ai>=0.1.73; extra == 'storage'
|
|
|
288
293
|
Requires-Dist: nebula3-python==3.8.2; extra == 'storage'
|
|
289
294
|
Requires-Dist: neo4j<6,>=5.18.0; extra == 'storage'
|
|
290
295
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'storage'
|
|
296
|
+
Requires-Dist: pyobvector>=0.1.18; extra == 'storage'
|
|
291
297
|
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'storage'
|
|
292
298
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'storage'
|
|
293
299
|
Requires-Dist: redis<6,>=5.0.6; extra == 'storage'
|
|
@@ -313,6 +319,7 @@ Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'web-tools'
|
|
|
313
319
|
Requires-Dist: playwright>=1.50.0; extra == 'web-tools'
|
|
314
320
|
Requires-Dist: pyowm<4,>=3.3.0; extra == 'web-tools'
|
|
315
321
|
Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'web-tools'
|
|
322
|
+
Requires-Dist: scrapegraph-py<2,>=1.12.0; extra == 'web-tools'
|
|
316
323
|
Requires-Dist: sympy<2,>=1.13.3; extra == 'web-tools'
|
|
317
324
|
Requires-Dist: tavily-python<0.6,>=0.5.0; extra == 'web-tools'
|
|
318
325
|
Requires-Dist: wikipedia<2,>=1; extra == 'web-tools'
|
|
@@ -337,6 +344,9 @@ Description-Content-Type: text/markdown
|
|
|
337
344
|
[![Hugging Face][huggingface-image]][huggingface-url]
|
|
338
345
|
[![Star][star-image]][star-url]
|
|
339
346
|
[![Package License][package-license-image]][package-license-url]
|
|
347
|
+
[![PyPI Download][package-download-image]][package-download-url]
|
|
348
|
+
|
|
349
|
+
<a href="https://trendshift.io/repositories/649" target="_blank"><img src="https://trendshift.io/api/badge/repositories/649" alt="camel-ai/camel | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
|
|
340
350
|
|
|
341
351
|
</div>
|
|
342
352
|
|
|
@@ -781,6 +791,7 @@ The source code is licensed under Apache 2.0.
|
|
|
781
791
|
[star-url]: https://github.com/camel-ai/camel/stargazers
|
|
782
792
|
[package-license-image]: https://img.shields.io/badge/License-Apache_2.0-blue.svg
|
|
783
793
|
[package-license-url]: https://github.com/camel-ai/camel/blob/master/licenses/LICENSE
|
|
794
|
+
[package-download-image]: https://img.shields.io/pypi/dm/camel-ai
|
|
784
795
|
|
|
785
796
|
[colab-url]: https://colab.research.google.com/drive/1AzP33O8rnMW__7ocWJhVBXjKziJXPtim?usp=sharing
|
|
786
797
|
[colab-image]: https://colab.research.google.com/assets/colab-badge.svg
|
|
@@ -796,3 +807,4 @@ The source code is licensed under Apache 2.0.
|
|
|
796
807
|
[reddit-url]: https://www.reddit.com/r/CamelAI/
|
|
797
808
|
[reddit-image]: https://img.shields.io/reddit/subreddit-subscribers/CamelAI?style=plastic&logo=reddit&label=r%2FCAMEL&labelColor=white
|
|
798
809
|
[ambassador-url]: https://www.camel-ai.org/community
|
|
810
|
+
[package-download-url]: https://pypi.org/project/camel-ai
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=ahKCboq7C3QONRLFpRJ9T-6MV-LXxd0MQwNV9GfKZ3Y,912
|
|
2
2
|
camel/generators.py,sha256=JRqj9_m1PF4qT6UtybzTQ-KBT9MJQt18OAAYvQ_fr2o,13844
|
|
3
3
|
camel/human.py,sha256=9X09UmxI2JqQnhrFfnZ3B9EzFmVfdSWQcjLWTIXKXe0,4962
|
|
4
4
|
camel/logger.py,sha256=rZVeOVYuQ9RYJ5Tqyv0usqy0g4zaVEq4qSfZ9nd2640,5755
|
|
@@ -37,16 +37,18 @@ camel/bots/discord/discord_store.py,sha256=eGBMYG8gm28PmmhcJ-JOVk2UKTBobEzvb6-pC
|
|
|
37
37
|
camel/bots/slack/__init__.py,sha256=iqySoYftEb7SI4pabhMvvTp1YYS09BvjwGXPEbcP1Hc,1055
|
|
38
38
|
camel/bots/slack/models.py,sha256=xMz3RO-88yrxPRrbBDjiabpbZIlpEHCvU-1CvASKARc,5143
|
|
39
39
|
camel/bots/slack/slack_app.py,sha256=SoSRZZnuTJ0aiLUBZqdG8cUFJzYpfpZh7304t0a_7Dg,9944
|
|
40
|
-
camel/configs/__init__.py,sha256=
|
|
40
|
+
camel/configs/__init__.py,sha256=l0Eymy2Jc9GcP7TxladEl8tZ-JVRcLnFaLTjMoVW2hw,3807
|
|
41
41
|
camel/configs/aiml_config.py,sha256=6niTHsxusPfXyNKNfxipTudgeULMIeOeXHAv5hRblsM,4264
|
|
42
42
|
camel/configs/anthropic_config.py,sha256=z8tTKgOimmMk8Xa1UjaSsDaCE8sNIkRYJx9EHGHdAgU,4007
|
|
43
43
|
camel/configs/base_config.py,sha256=2nEIRQoY6tIMeBIcxcBtCadmpsd8bSQj9rzewQsgfXo,3188
|
|
44
|
+
camel/configs/bedrock_config.py,sha256=KZ_oZg25AGcC0sC3ZmVElwFcBjchtcPEbya0u0EVv28,3899
|
|
44
45
|
camel/configs/cohere_config.py,sha256=hZBcjQ8Zfyj1YT_7ndNbMdTyBZQRAi2vB1r8hJmyKqg,4021
|
|
45
46
|
camel/configs/deepseek_config.py,sha256=EuS5agT2ZjJ9-pZGjlpGKPpMjycwozXI87gkQ41ixmQ,5728
|
|
46
47
|
camel/configs/gemini_config.py,sha256=RKCGFOX_yIgWGX30byQFWfiuGQ7diPyyvS2aVmgfORw,4725
|
|
47
48
|
camel/configs/groq_config.py,sha256=H4YEBpSNwqkMrBkJmSpInHucS1Qddr4qOpF-LZqb6QQ,5732
|
|
48
49
|
camel/configs/internlm_config.py,sha256=OfA_jSQ_DBEqqMogUkwYecSY-XVT4pVa3J1KE_F83tg,2989
|
|
49
50
|
camel/configs/litellm_config.py,sha256=fBTa-iGTC_zYRnl2tikQMoaQ-ilScvbSDaziMg93Bak,4878
|
|
51
|
+
camel/configs/lmstudio_config.py,sha256=QXOI54kSArG2p8eOrmgk6FaZrDcSgu_0m4b2fIn4hLc,5325
|
|
50
52
|
camel/configs/mistral_config.py,sha256=hsjh33nUEZaWiVI6rxSTwukPemWOr3iRrfFFPc9DrDs,3535
|
|
51
53
|
camel/configs/modelscope_config.py,sha256=7dVeGiMfYuDMiBLdk_u9j-_n-Ua1_m-ZJC3vRuwCEfs,2771
|
|
52
54
|
camel/configs/moonshot_config.py,sha256=GTULZtMVC1bMDnXCF3t3LKVPBMWjN4fI7prGlRXq9tw,2851
|
|
@@ -55,7 +57,7 @@ camel/configs/ollama_config.py,sha256=R6hX6N_uCfu3ocnRsunUpdmKRWMIRMwbAAXMk9vwFb
|
|
|
55
57
|
camel/configs/openai_config.py,sha256=U8lwSlfX_3sQYXRharDbaQC6ZgsGuDhy60AmsSJEeIw,7244
|
|
56
58
|
camel/configs/openrouter_config.py,sha256=bSPP2NmEI1nJby8s-6FCcgpKqvDEKpxlQcx5GZMGanE,5894
|
|
57
59
|
camel/configs/ppio_config.py,sha256=HXtwMqDUW9ozg19hDwOSxnXo3wkRb8NmUp3wQq6CZ18,5718
|
|
58
|
-
camel/configs/qwen_config.py,sha256=
|
|
60
|
+
camel/configs/qwen_config.py,sha256=qenXb8_IeiT4YJR6vCDJEm6MHxBx6dlnU-Cu67amc3A,4658
|
|
59
61
|
camel/configs/reka_config.py,sha256=tsseAm-pFz479rHNhV1N6HsuWrgsEh1X7Hg6-MRZycc,3398
|
|
60
62
|
camel/configs/samba_config.py,sha256=dV1Wm0adCuPa_UHc7w40SnjcW53HDFcxdDozwqGg11E,8606
|
|
61
63
|
camel/configs/sglang_config.py,sha256=GgqfDiuAHYJH0HfzBpkP8DvoDc7FYLO1ZP6kNnmKEdo,3943
|
|
@@ -92,8 +94,8 @@ camel/datahubs/huggingface.py,sha256=LgRruML4XnwHrm_jMB-aB-Ha-M9ErRrA7YmiL6saGis
|
|
|
92
94
|
camel/datahubs/models.py,sha256=tGb9OP_aomIhnwc0VapJjTg9PmyV_QCp5to9sABXF0Y,978
|
|
93
95
|
camel/datasets/__init__.py,sha256=WlBpnzL8MejnJdofpJQBYv9KCyu1AZgm0-sTqDht6Aw,1051
|
|
94
96
|
camel/datasets/base_generator.py,sha256=WJEJTT00J3jv1LHjQ5wPBQSfxX0OkT1tc3Uu4FgQwSI,10735
|
|
95
|
-
camel/datasets/few_shot_generator.py,sha256=
|
|
96
|
-
camel/datasets/models.py,sha256=
|
|
97
|
+
camel/datasets/few_shot_generator.py,sha256=HCXaJ7b5-W72deC662TKiNUtzzHKJ60dFyZ9W_2Hrsc,10867
|
|
98
|
+
camel/datasets/models.py,sha256=0RDZfGT-x2MGaJg6qMufiY5cO-V7Lg0ckDSMYjCUQpo,2230
|
|
97
99
|
camel/datasets/self_instruct_generator.py,sha256=9FK-S7N7e-PR5rABj59BCNmUZCd8fS72La612FK0AEM,15837
|
|
98
100
|
camel/datasets/static_dataset.py,sha256=jPFwR0Kk6LmPFGKFm8SGhZvdee9293gGJBoqucCHdE0,14272
|
|
99
101
|
camel/embeddings/__init__.py,sha256=hBSLowaRL7HHMx5x3swq9DhdcAuKlJDJm6Y9HXeZw34,1404
|
|
@@ -123,7 +125,7 @@ camel/interpreters/interpreter_error.py,sha256=uEhcmHmmcajt5C9PLeHs21h1fE6cmyt23
|
|
|
123
125
|
camel/interpreters/ipython_interpreter.py,sha256=-erOR6imuh5pUtpbUYky3zoLDr30Y5E7lm59BwwxzNs,5976
|
|
124
126
|
camel/interpreters/subprocess_interpreter.py,sha256=xmACW9SeZ1yLogvD2rX_e63ixNE277XgQ3GaTb0c8KY,16639
|
|
125
127
|
camel/interpreters/docker/Dockerfile,sha256=6_k33dlpxgf8V9vfywWmjLuOgHmT2s-a8Lb8VbFRv4s,253
|
|
126
|
-
camel/loaders/__init__.py,sha256=
|
|
128
|
+
camel/loaders/__init__.py,sha256=Eo6c98nppLemtua3SZQeX5ZsJ0eUhMKRegiZzuSKNK0,1374
|
|
127
129
|
camel/loaders/apify_reader.py,sha256=oaVjKyNhJhG-hTuIwrpZ2hsB4XTL0M-kUksgSL2R0ck,7952
|
|
128
130
|
camel/loaders/base_io.py,sha256=zsbdBPHgSPFyQrtiUgAsHvy39QHWUObRYNaVvr-pPk0,10190
|
|
129
131
|
camel/loaders/chunkr_reader.py,sha256=Vzc0a1ac28DHQ5z40Va4ce2noOxaGnhRi3Clf60R1lc,6140
|
|
@@ -132,6 +134,7 @@ camel/loaders/firecrawl_reader.py,sha256=wCPHEWbfLv_q2x9MdTiSvJ_LDqUPO88lzPf0mmO
|
|
|
132
134
|
camel/loaders/jina_url_reader.py,sha256=dL9J5JlsFKEhi4gU_vYIxKvvf_RJ4LY9gG6i8P8JpcA,3601
|
|
133
135
|
camel/loaders/mineru_extractor.py,sha256=nKa5n7f3ergv1TURcbXZJP5mQpnSCIFdlWrxWn4hBz8,9070
|
|
134
136
|
camel/loaders/pandas_reader.py,sha256=zTVrUWsnR6oeOqeL8KLlnapJeaB4El0wyIrEPY1aLus,11922
|
|
137
|
+
camel/loaders/scrapegraph_reader.py,sha256=k8EOV5-p41DHDr2ITV8BR1sMqBsvN41CN8Byj2cf5kY,3120
|
|
135
138
|
camel/loaders/unstructured_io.py,sha256=wA3fkDeS4mSPFkMDnWZzJYKDltio7l72BU9D3EGfoUs,17423
|
|
136
139
|
camel/memories/__init__.py,sha256=JQbs-_7VkcVTjE8y9J0DWI3btDyMRZilTZNVuy_RxZM,1358
|
|
137
140
|
camel/memories/agent_memories.py,sha256=HysjYAB6srRdb3uE_IXmC94YPZBfGcAUdTlbcbzzLZE,9330
|
|
@@ -152,44 +155,46 @@ camel/messages/conversion/sharegpt/__init__.py,sha256=oWUuHV5w85kxqhz_hoElLmCfzL
|
|
|
152
155
|
camel/messages/conversion/sharegpt/function_call_formatter.py,sha256=cn7e7CfmxEVFlfOqhjhNuA8nuWvWD6hXYn-3okXNxxQ,1832
|
|
153
156
|
camel/messages/conversion/sharegpt/hermes/__init__.py,sha256=mxuMSm-neaTgInIjYXuIVdC310E6jKJzM3IdtaJ4qY4,812
|
|
154
157
|
camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py,sha256=-9TT8iOQ-ieKSKR_PmJSA5Bi0uBx-qR7WQ6vxuFkorM,4639
|
|
155
|
-
camel/models/__init__.py,sha256=
|
|
158
|
+
camel/models/__init__.py,sha256=ow7aU6X9xdWMvWL0xsVlR4bIm-01Zlo-60pxUOCXclo,3091
|
|
156
159
|
camel/models/_utils.py,sha256=hob1ehnS5xZitMCdYToHVgaTB55JnaP4_DSWnTEfVsg,2045
|
|
157
|
-
camel/models/aiml_model.py,sha256=
|
|
158
|
-
camel/models/anthropic_model.py,sha256=
|
|
160
|
+
camel/models/aiml_model.py,sha256=HO_jRvMN2WEVlZRc_UG-OoZ1hv8sEiO5j_7BBKuGlp0,3753
|
|
161
|
+
camel/models/anthropic_model.py,sha256=0jilp8dBrk1JAP0dkw_YX21uL3_81ZGL0qmKZiAI2w0,4331
|
|
162
|
+
camel/models/aws_bedrock_model.py,sha256=cpY66Wcwb-clNf0TCch9WI8au3_GGxHBYUd09rGQi_U,4353
|
|
159
163
|
camel/models/azure_openai_model.py,sha256=psxSx1R9dCRw-jWy58lwhUjPFP01UrhCJ7sHeveu_fo,11057
|
|
160
164
|
camel/models/base_audio_model.py,sha256=_VUWh1L3rh8mldNvM5R6jBOKtvmTeBKJyRxAdPJmPlY,3324
|
|
161
165
|
camel/models/base_model.py,sha256=eDeUlgH8iS0Stk6zommzqce4dfD4Qj51tvgXUs5ys4s,14474
|
|
162
166
|
camel/models/cohere_model.py,sha256=OgRHxlPrei-NT5UVDFf6lVR88k6eKnmcZMyFj4XmONE,14880
|
|
163
|
-
camel/models/deepseek_model.py,sha256=
|
|
167
|
+
camel/models/deepseek_model.py,sha256=TLs-674MBM-vDxBkMwWn63q51HlQucE3HDxmFMe5c9o,9222
|
|
164
168
|
camel/models/fish_audio_model.py,sha256=RCwORRIdCbjZXWWjjctpksPI2DnS0b68JjxunHBQ1xk,5981
|
|
165
|
-
camel/models/gemini_model.py,sha256=
|
|
166
|
-
camel/models/groq_model.py,sha256=
|
|
167
|
-
camel/models/internlm_model.py,sha256=
|
|
169
|
+
camel/models/gemini_model.py,sha256=WlLpFgkRbOiEUXtA7wsV4FQbIJ4UYjR6TgZQpbCEpto,10459
|
|
170
|
+
camel/models/groq_model.py,sha256=596VqRJ_yxv9Jz3sG7UVXVkIjZI1nX7zQAD709m4uig,3774
|
|
171
|
+
camel/models/internlm_model.py,sha256=l7WjJ7JISCCqkezhEXzmjj_Mvhqhxxhsg4NuenP7w9w,4374
|
|
168
172
|
camel/models/litellm_model.py,sha256=rlSt3EnBAAYyoIxq0_XTuRmRnc4RWvD2Z14yIrI_7uw,5942
|
|
173
|
+
camel/models/lmstudio_model.py,sha256=_Lnv0e2ichks_MrNJGNIawEtGtP7T_xX8v0bFNNeWes,3641
|
|
169
174
|
camel/models/mistral_model.py,sha256=5FXI8wBIc_xU50NOJZh3gtn91ZNOlPVqKfGm-4aiRYQ,12179
|
|
170
|
-
camel/models/model_factory.py,sha256=
|
|
175
|
+
camel/models/model_factory.py,sha256=Ci3o0oDdEnZAf97MIJY2bkj8Hg0RwPXDSkqBSL1jW2Y,11206
|
|
171
176
|
camel/models/model_manager.py,sha256=gfpL-WUxuTXgNeCkIVg8Y0zRvxMqRLX8JGt0XEAPQ8Y,9214
|
|
172
|
-
camel/models/modelscope_model.py,sha256=
|
|
173
|
-
camel/models/moonshot_model.py,sha256=
|
|
174
|
-
camel/models/nemotron_model.py,sha256=
|
|
175
|
-
camel/models/nvidia_model.py,sha256=
|
|
176
|
-
camel/models/ollama_model.py,sha256=
|
|
177
|
+
camel/models/modelscope_model.py,sha256=6y6SMUtXWTkYPPBYYSvTgpMEs08YJWkK8yNGD_c2tmA,4027
|
|
178
|
+
camel/models/moonshot_model.py,sha256=yeD2jrfQpFaWJHVe1s1KrI6aHQVzKRcBDt9C2Qo4nU8,4305
|
|
179
|
+
camel/models/nemotron_model.py,sha256=APYCcpDMytZNsXFhdcLnO8bttc6pQWAo6e5h2VTJVwM,2686
|
|
180
|
+
camel/models/nvidia_model.py,sha256=XkHBZJ94nkYB1j9AgyPsorYfvgO1Ys6S6_z3Qh3vrhM,3766
|
|
181
|
+
camel/models/ollama_model.py,sha256=daPWcHSTt4Krre9Vy5_SWK1rNwWZb6Hk_7cH9PiM5xA,4275
|
|
177
182
|
camel/models/openai_audio_models.py,sha256=BSixkXlc8xirQLl2qCla-g6_y9wDLnMZVHukHrhzw98,13344
|
|
178
|
-
camel/models/openai_compatible_model.py,sha256=
|
|
179
|
-
camel/models/openai_model.py,sha256=
|
|
180
|
-
camel/models/openrouter_model.py,sha256=
|
|
181
|
-
camel/models/ppio_model.py,sha256=
|
|
182
|
-
camel/models/qwen_model.py,sha256=
|
|
183
|
-
camel/models/reka_model.py,sha256=
|
|
183
|
+
camel/models/openai_compatible_model.py,sha256=PmNMQKXMPk-4HYiDqn8dJ8cMH8ukl4MAPVtqWyWDnfY,10481
|
|
184
|
+
camel/models/openai_model.py,sha256=atxW2N6xcA9kqGAE6moqKYZD3IxIxOjmKcQnBs7ff7w,12826
|
|
185
|
+
camel/models/openrouter_model.py,sha256=WAZxAtl_lVMMuc0HGjWHmfs3K0zt7G0dXM55TIsZ4d0,3866
|
|
186
|
+
camel/models/ppio_model.py,sha256=Fn7TTaKkRfg5bIRIxbBSlvAXKLTcJf71iJdgQmSuBSk,3891
|
|
187
|
+
camel/models/qwen_model.py,sha256=4Xu_vLOKrpd82cOTq24kmNUCaqn34BfPQ_oscB8dRbE,3825
|
|
188
|
+
camel/models/reka_model.py,sha256=P9J8r3KPB4IdJ7S7O6LJ5hY6fDfodv3kdOS6fY57gBU,10591
|
|
184
189
|
camel/models/samba_model.py,sha256=tfFqzvbZH3KF25zvnVyaUa3dgfMbfDfNlU-QXg9bdlw,22950
|
|
185
|
-
camel/models/sglang_model.py,sha256=
|
|
186
|
-
camel/models/siliconflow_model.py,sha256=
|
|
190
|
+
camel/models/sglang_model.py,sha256=GsRxh3yrOQRu5gJgPdES289vCiiUHoBvKw-YZ-iwlI0,14384
|
|
191
|
+
camel/models/siliconflow_model.py,sha256=mdVcf-5N-ZWS5qGL2pq7TsAsvlhCXxL6jxavxeElFRw,4432
|
|
187
192
|
camel/models/stub_model.py,sha256=JvjeEkXS7RMcR_UA_64a3T6S0QALUhOaMQs-aI7Etug,5955
|
|
188
|
-
camel/models/togetherai_model.py,sha256=
|
|
189
|
-
camel/models/vllm_model.py,sha256=
|
|
190
|
-
camel/models/volcano_model.py,sha256=
|
|
191
|
-
camel/models/yi_model.py,sha256=
|
|
192
|
-
camel/models/zhipuai_model.py,sha256=
|
|
193
|
+
camel/models/togetherai_model.py,sha256=16q-0jsO5HIy9K0elSlR-aA9EDN5VhPXPGBG6cU1t1w,3937
|
|
194
|
+
camel/models/vllm_model.py,sha256=vSgIuddQBvduDr5suh5jSG38ug7SCEFFHbERFrwcw8c,4351
|
|
195
|
+
camel/models/volcano_model.py,sha256=Lsg0BDVPaP50vRNW0D37liEsa71RmvapBxN_JCcHe-4,3674
|
|
196
|
+
camel/models/yi_model.py,sha256=hZ_LYZWYhDkjBA3UcDiY2sGPFH3jEbxHaRy6IMvLYZ4,3742
|
|
197
|
+
camel/models/zhipuai_model.py,sha256=2oOIhrRB9d1zC4gaHz69bQfHlJlsiEn2SXOR_CQHAp0,3833
|
|
193
198
|
camel/models/reward/__init__.py,sha256=MqPN6wXh7Y1SoeNoFlYaMG6xHzLG0CYsv_3kB2atIQk,984
|
|
194
199
|
camel/models/reward/base_reward_model.py,sha256=erCmBCl51oFNjEHCXWxdHKIPNVJnQlNGgYBDn2bFD-Q,2064
|
|
195
200
|
camel/models/reward/evaluator.py,sha256=54ev5MuQ_5Tp0-LGO59EIuIkGrVMbtXXqpBR5Ps9kCM,2426
|
|
@@ -251,7 +256,7 @@ camel/societies/workforce/task_channel.py,sha256=9t5hoinfGYnbRavX4kx34Jk1FOy05Sn
|
|
|
251
256
|
camel/societies/workforce/utils.py,sha256=yPbcLx8lNZStl15C4UXRBl5qsTrGA-hiIGynnGi53WQ,2384
|
|
252
257
|
camel/societies/workforce/worker.py,sha256=Do6FDpEraICQVptBH-LiG5KDYYQzD83sLoYO9J8NAbc,3933
|
|
253
258
|
camel/societies/workforce/workforce.py,sha256=xxv1pIgYcbK_5IO6-gwH0OHmhIZbFZRNeifbDNSgRJ8,19150
|
|
254
|
-
camel/storages/__init__.py,sha256=
|
|
259
|
+
camel/storages/__init__.py,sha256=slOLuoxK45LEmLzogqkSmAfbItwYGa4ytzwZopSvhK0,1840
|
|
255
260
|
camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
|
|
256
261
|
camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
|
|
257
262
|
camel/storages/graph_storages/graph_element.py,sha256=X_2orbQOMaQd00xxzAoJLfEcrVNE1mgCqMJv0orMAKA,2733
|
|
@@ -268,9 +273,10 @@ camel/storages/object_storages/amazon_s3.py,sha256=9Yvyyyb1LGHxr8REEza7oGopbVtLE
|
|
|
268
273
|
camel/storages/object_storages/azure_blob.py,sha256=66dHcvjE2ZNdb339oBU6LbFiKzPYrnlb4tQ_3m2Yazc,5992
|
|
269
274
|
camel/storages/object_storages/base.py,sha256=pImWylYJm7Wt8q87lBE1Cxk26IJ9sRtXq_OJmV6bJlg,3796
|
|
270
275
|
camel/storages/object_storages/google_cloud.py,sha256=59AvGar_GDoGYHhzUi5KBtInv2KaUVnw8SalsL43410,5332
|
|
271
|
-
camel/storages/vectordb_storages/__init__.py,sha256=
|
|
276
|
+
camel/storages/vectordb_storages/__init__.py,sha256=DMd6osd7V7wq_34Evy_mOIu8RDHw2ssJiiun-aauEZE,1183
|
|
272
277
|
camel/storages/vectordb_storages/base.py,sha256=EP_WbEtI3SJPHro9rjNkIq9UDUP1AAHmxZgeya94Lgk,6738
|
|
273
278
|
camel/storages/vectordb_storages/milvus.py,sha256=J--Q_MvrylhCqXTpLNHeKTn_m2WJozxltUabYRz9t0I,13483
|
|
279
|
+
camel/storages/vectordb_storages/oceanbase.py,sha256=5MrHaH08DqeA0z4lf8QUjUK43yC0hekumFI9PTl7wp8,17047
|
|
274
280
|
camel/storages/vectordb_storages/qdrant.py,sha256=a_cT0buSCHQ2CPZy852-mdvMDwy5zodCvAKMaa4zIvg,18017
|
|
275
281
|
camel/storages/vectordb_storages/tidb.py,sha256=w83bxgKgso43MtHqlpf2EMSpn1_Nz6ZZtY4fPw_-vgs,11192
|
|
276
282
|
camel/tasks/__init__.py,sha256=MuHwkw5GRQc8NOCzj8tjtBrr2Xg9KrcKp-ed_-2ZGIM,906
|
|
@@ -280,12 +286,12 @@ camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls
|
|
|
280
286
|
camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
|
|
281
287
|
camel/terminators/response_terminator.py,sha256=n3G5KP6Oj7-7WlRN0yFcrtLpqAJKaKS0bmhrWlFfCgQ,4982
|
|
282
288
|
camel/terminators/token_limit_terminator.py,sha256=YWv6ZR8R9yI2Qnf_3xES5bEE_O5bb2CxQ0EUXfMh34c,2118
|
|
283
|
-
camel/toolkits/__init__.py,sha256
|
|
289
|
+
camel/toolkits/__init__.py,sha256=AQqFlCEzz9lb_eSgSNow0G9BXZyh5hD4vPaDJEz9w5I,4366
|
|
284
290
|
camel/toolkits/arxiv_toolkit.py,sha256=Bs2-K1yfmqhEhHoQ0j00KoI8LpOd8M3ApXcvI_-ApVw,6303
|
|
285
291
|
camel/toolkits/ask_news_toolkit.py,sha256=WfWaqwEo1Apbil3-Rb5y65Ws43NU4rAFWZu5VHe4los,23448
|
|
286
292
|
camel/toolkits/audio_analysis_toolkit.py,sha256=dnDtQJbztVBwBpamSyCfigPw2GBnDAfi3fOPgql4Y50,8941
|
|
287
293
|
camel/toolkits/base.py,sha256=4uuQ8peAvNNq-M0lOHVbIbMJiphlNCfQv7bfZ7LSKSI,2052
|
|
288
|
-
camel/toolkits/browser_toolkit.py,sha256=
|
|
294
|
+
camel/toolkits/browser_toolkit.py,sha256=_12-AULqJUTnPuqxeqYykRhMxezB59i4w2QVsVPigbg,55750
|
|
289
295
|
camel/toolkits/code_execution.py,sha256=6nI5wSBE6W8Ha05UfoPRoe7dtyszGUZ7W55_3HUgUoY,4626
|
|
290
296
|
camel/toolkits/dalle_toolkit.py,sha256=pw5IzX9nNw8HaBllWrTYRtyQMbbCGE4f0JpZTizt8Co,5551
|
|
291
297
|
camel/toolkits/dappier_toolkit.py,sha256=ewhXeeUj7e4DiTzuWDA-gHGhrLdyoZ4l9pbijvF3py0,8199
|
|
@@ -299,6 +305,7 @@ camel/toolkits/google_maps_toolkit.py,sha256=WTnkURpGri9KcY5OwV7AJJHOzmpu5RNmYE1
|
|
|
299
305
|
camel/toolkits/google_scholar_toolkit.py,sha256=WQ9a0HQr0vro1Uo1m--alCUXvMmaHVKeQYqGCxXc2s8,7562
|
|
300
306
|
camel/toolkits/human_toolkit.py,sha256=ZbhXPA0G3mQkcNW_jPwywReAft2pIJG0WkVXOG48s1w,2328
|
|
301
307
|
camel/toolkits/image_analysis_toolkit.py,sha256=gnbX2by7_pxPpjUEY8bOj1tV-hGC3mwqEvQRMXyZ9TM,7535
|
|
308
|
+
camel/toolkits/jina_reranker_toolkit.py,sha256=U-V9qZ7SKP3SPTh_0CsE7ZKNqS9jNkmKYsIN1Mk-vFY,8118
|
|
302
309
|
camel/toolkits/linkedin_toolkit.py,sha256=wn4eXwYYlVA7doTna7k7WYhUqTBF83W79S-UJs_IQr0,8065
|
|
303
310
|
camel/toolkits/math_toolkit.py,sha256=KdI8AJ9Dbq5cfWboAYJUYgSkmADMCO5eZ6yqYkWuiIQ,3686
|
|
304
311
|
camel/toolkits/mcp_toolkit.py,sha256=4eweKFF3M9WOGroJCdsNBdyp8KUZJfaXLPGVYFu9kUQ,18275
|
|
@@ -312,9 +319,10 @@ camel/toolkits/openai_agent_toolkit.py,sha256=hT2ancdQigngAiY1LNnGJzZeiBDHUxrRGv
|
|
|
312
319
|
camel/toolkits/openbb_toolkit.py,sha256=8yBZL9E2iSgskosBQhD3pTP56oV6gerWpFjIJc_2UMo,28935
|
|
313
320
|
camel/toolkits/page_script.js,sha256=gypbuQ_gn_oa3rQDoCN_q-kJ0jND1eSvY-30PufPZmQ,12613
|
|
314
321
|
camel/toolkits/pubmed_toolkit.py,sha256=VGl8KeyWi7pjb2kEhFBLmpBlP9ezv8JyWRHtEVTQ6nQ,12227
|
|
322
|
+
camel/toolkits/pyautogui_toolkit.py,sha256=Q810fm8cFvElRory7B74aqS2YV6BOpdRE6jkewoM8xc,16093
|
|
315
323
|
camel/toolkits/reddit_toolkit.py,sha256=x0XAT1zQJVNHUr1R1HwWCgIlkamU-kPmbfb_H1WIv-w,8036
|
|
316
324
|
camel/toolkits/retrieval_toolkit.py,sha256=BKjEyOqW3cGEPTS5yHPYb-Qg795iNNPIs1wjowfuq3U,3825
|
|
317
|
-
camel/toolkits/search_toolkit.py,sha256=
|
|
325
|
+
camel/toolkits/search_toolkit.py,sha256=bC1B08M3awfBZlmaNYaemcVZkCiC42eih7AuFCe1-9Y,50171
|
|
318
326
|
camel/toolkits/searxng_toolkit.py,sha256=a2GtE4FGSrmaIVvX6Yide-abBYD1wsHqitnDlx9fdVg,7664
|
|
319
327
|
camel/toolkits/semantic_scholar_toolkit.py,sha256=Rh7eA_YPxV5pvPIzhjjvpr3vtlaCniJicrqzkPWW9_I,11634
|
|
320
328
|
camel/toolkits/slack_toolkit.py,sha256=Nb3w-TbUmnUWEvHE9Hbf_wkpSepm_zKQj7m19UyoFio,11194
|
|
@@ -323,8 +331,8 @@ camel/toolkits/sympy_toolkit.py,sha256=dkzGp7C7Oy-qP1rVziEk_ZOPRb37d5LoI7JKCLiTE
|
|
|
323
331
|
camel/toolkits/terminal_toolkit.py,sha256=gupuTvNkwnFzcFwDB_irSJ9-dXRr8yEAsYq5ChEkkHg,37230
|
|
324
332
|
camel/toolkits/thinking_toolkit.py,sha256=NyA6rDFG-WbCNt7NFODBTpqOIDtP6he6GhnZpPlA2To,8001
|
|
325
333
|
camel/toolkits/twitter_toolkit.py,sha256=j14Hxpt4XTEOF6dWpGm6Ot_vkYT7WOiLrUa1d2JT05U,15850
|
|
326
|
-
camel/toolkits/video_analysis_toolkit.py,sha256
|
|
327
|
-
camel/toolkits/video_download_toolkit.py,sha256=
|
|
334
|
+
camel/toolkits/video_analysis_toolkit.py,sha256=-BkRklGawy2KbeOfXFp4LC4FzvVQiF9NZwWavACC6Cs,20535
|
|
335
|
+
camel/toolkits/video_download_toolkit.py,sha256=6e6Cjmb2Xw7ayJ0BHQBrzsgt5MWzNC-nybWuV98CkPo,7389
|
|
328
336
|
camel/toolkits/weather_toolkit.py,sha256=fs9x9aC38Wsvni6A4PPpbRX6-aBnZiqs2Jix39yoULU,7413
|
|
329
337
|
camel/toolkits/whatsapp_toolkit.py,sha256=udUQXkXyeWsmrUlOJZsGBhHtc_jhB05Axe_TchhibsU,5760
|
|
330
338
|
camel/toolkits/zapier_toolkit.py,sha256=A83y1UcfuopH7Fx82pORzypl1StbhBjB2HhyOqYa300,7124
|
|
@@ -354,9 +362,9 @@ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZ
|
|
|
354
362
|
camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
|
|
355
363
|
camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
|
|
356
364
|
camel/types/__init__.py,sha256=VLWhAt857IFct3XepY5BNOIhyhDhfmODTezr9jhO_TI,2251
|
|
357
|
-
camel/types/enums.py,sha256=
|
|
365
|
+
camel/types/enums.py,sha256=oR_L2aGx0hU6I1Dqs1Zvy6Tm0tuvbigA9o1HHDQio4Y,45303
|
|
358
366
|
camel/types/openai_types.py,sha256=8ZFzLe-zGmKNPfuVZFzxlxAX98lGf18gtrPhOgMmzus,2104
|
|
359
|
-
camel/types/unified_model_type.py,sha256=
|
|
367
|
+
camel/types/unified_model_type.py,sha256=aytg6A6az29lUHZkG8-SUMZJhJk-ohZGiQA8aPCbiuw,4949
|
|
360
368
|
camel/types/agents/__init__.py,sha256=cbvVkogPoZgcwZrgxLH6EtpGXk0kavF79nOic0Dc1vg,786
|
|
361
369
|
camel/types/agents/tool_calling_record.py,sha256=qa-vLyKvYzWprRkFFl1928xaw9CnfacIebHaqM-oY3s,1814
|
|
362
370
|
camel/utils/__init__.py,sha256=aj6fUgVe0bB-CDRKIBTb7tZ2jgzI_Lj3YRMBs37hUJQ,2672
|
|
@@ -366,7 +374,7 @@ camel/utils/constants.py,sha256=cqnxmpUeOwrtsR-tRO4bbOc6ZP19TLj7avjm3FONMJs,1410
|
|
|
366
374
|
camel/utils/deduplication.py,sha256=UHikAtOW1TTDunf2t_wa2kFbmkrXWf7HfOKwLvwCxzo,8958
|
|
367
375
|
camel/utils/mcp.py,sha256=iePHJ3uMq7Qtv0xVgSop0Md1Hye0CV_Ir-8z-DQ8sd8,2884
|
|
368
376
|
camel/utils/response_format.py,sha256=9KrbwtOM9cA3LSjTgLiK7oKy-53_uMh1cvpyNwwJpng,2419
|
|
369
|
-
camel/utils/token_counting.py,sha256=
|
|
377
|
+
camel/utils/token_counting.py,sha256=apkERzNoVc4sgvJvWVosvepX3KH8pVypVjrL4AA7RB4,17521
|
|
370
378
|
camel/utils/chunker/__init__.py,sha256=6iN6HL6sblIjDuJTILk-9qKcHBZ97t8b6tZCWPZ0OYI,899
|
|
371
379
|
camel/utils/chunker/base.py,sha256=9CuqymFCRncyAdEST-IcRonB732YAPhusznqH-RES3E,960
|
|
372
380
|
camel/utils/chunker/code_chunker.py,sha256=9h4rd39H9ngbOWAjd_12xt-EzVMh0e_fZnC4my8h_Jg,6823
|
|
@@ -376,7 +384,7 @@ camel/verifiers/base.py,sha256=luvvEMCO_yH54zIUslPrcTDUFzrXU5ODn_1Ij054B3E,15523
|
|
|
376
384
|
camel/verifiers/math_verifier.py,sha256=tA1D4S0sm8nsWISevxSN0hvSVtIUpqmJhzqfbuMo0y4,6875
|
|
377
385
|
camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
|
|
378
386
|
camel/verifiers/python_verifier.py,sha256=qvNNYTlFyOMbIaDF2JNWELiIfj_phdV2JWRxPrghpT0,21528
|
|
379
|
-
camel_ai-0.2.
|
|
380
|
-
camel_ai-0.2.
|
|
381
|
-
camel_ai-0.2.
|
|
382
|
-
camel_ai-0.2.
|
|
387
|
+
camel_ai-0.2.47.dist-info/METADATA,sha256=eXcKOsQ4RT9__hR5K-prG2x3Z31GBU6OiYgUP0fsyzI,43716
|
|
388
|
+
camel_ai-0.2.47.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
389
|
+
camel_ai-0.2.47.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
|
|
390
|
+
camel_ai-0.2.47.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|