camel-ai 0.2.19__py3-none-any.whl → 0.2.20a1__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/agents/chat_agent.py +27 -27
- camel/configs/__init__.py +6 -0
- camel/configs/moonshot_config.py +63 -0
- camel/configs/siliconflow_config.py +91 -0
- camel/datahubs/huggingface.py +3 -3
- camel/embeddings/jina_embedding.py +6 -1
- camel/models/__init__.py +2 -0
- camel/models/model_factory.py +6 -0
- camel/models/moonshot_model.py +138 -0
- camel/models/siliconflow_model.py +142 -0
- camel/toolkits/__init__.py +2 -0
- camel/toolkits/search_toolkit.py +12 -0
- camel/toolkits/semantic_scholar_toolkit.py +308 -0
- camel/types/enums.py +112 -5
- camel/types/unified_model_type.py +5 -0
- {camel_ai-0.2.19.dist-info → camel_ai-0.2.20a1.dist-info}/METADATA +5 -2
- {camel_ai-0.2.19.dist-info → camel_ai-0.2.20a1.dist-info}/RECORD +20 -15
- {camel_ai-0.2.19.dist-info → camel_ai-0.2.20a1.dist-info}/LICENSE +0 -0
- {camel_ai-0.2.19.dist-info → camel_ai-0.2.20a1.dist-info}/WHEEL +0 -0
camel/types/enums.py
CHANGED
|
@@ -40,7 +40,17 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
40
40
|
O3_MINI = "o3-mini"
|
|
41
41
|
|
|
42
42
|
GLM_4 = "glm-4"
|
|
43
|
-
GLM_4V =
|
|
43
|
+
GLM_4V = "glm-4v"
|
|
44
|
+
GLM_4V_FLASH = "glm-4v-flash"
|
|
45
|
+
GLM_4V_PLUS_0111 = "glm-4v-plus-0111"
|
|
46
|
+
GLM_4_PLUS = "glm-4-plus"
|
|
47
|
+
GLM_4_AIR = "glm-4-air"
|
|
48
|
+
GLM_4_AIR_0111 = "glm-4-air-0111"
|
|
49
|
+
GLM_4_AIRX = "glm-4-airx"
|
|
50
|
+
GLM_4_LONG = "glm-4-long"
|
|
51
|
+
GLM_4_FLASHX = "glm-4-flashx"
|
|
52
|
+
GLM_4_FLASH = "glm-4-flash"
|
|
53
|
+
GLM_ZERO_PREVIEW = "glm-zero-preview"
|
|
44
54
|
GLM_3_TURBO = "glm-3-turbo"
|
|
45
55
|
|
|
46
56
|
# Groq platform models
|
|
@@ -106,9 +116,12 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
106
116
|
NVIDIA_LLAMA3_3_70B_INSTRUCT = "meta/llama-3.3-70b-instruct"
|
|
107
117
|
|
|
108
118
|
# Gemini models
|
|
119
|
+
GEMINI_2_0_FLASH = "gemini-2.0-flash-exp"
|
|
120
|
+
GEMINI_2_0_FLASH_THINKING = "gemini-2.0-flash-thinking-exp"
|
|
121
|
+
GEMINI_2_0_PRO_EXP = "gemini-2.0-pro-exp-02-05"
|
|
122
|
+
GEMINI_2_0_FLASH_LITE_PREVIEW = "gemini-2.0-flash-lite-preview-02-05"
|
|
109
123
|
GEMINI_1_5_FLASH = "gemini-1.5-flash"
|
|
110
124
|
GEMINI_1_5_PRO = "gemini-1.5-pro"
|
|
111
|
-
GEMINI_EXP_1114 = "gemini-exp-1114"
|
|
112
125
|
|
|
113
126
|
# Mistral AI models
|
|
114
127
|
MISTRAL_3B = "ministral-3b-latest"
|
|
@@ -145,10 +158,12 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
145
158
|
QWEN_MATH_TURBO = "qwen-math-turbo"
|
|
146
159
|
QWEN_CODER_TURBO = "qwen-coder-turbo"
|
|
147
160
|
QWEN_2_5_CODER_32B = "qwen2.5-coder-32b-instruct"
|
|
161
|
+
QWEN_2_5_VL_72B = "qwen2.5-vl-72b-instruct"
|
|
148
162
|
QWEN_2_5_72B = "qwen2.5-72b-instruct"
|
|
149
163
|
QWEN_2_5_32B = "qwen2.5-32b-instruct"
|
|
150
164
|
QWEN_2_5_14B = "qwen2.5-14b-instruct"
|
|
151
165
|
QWEN_QWQ_32B = "qwq-32b-preview"
|
|
166
|
+
QWEN_QVQ_72B = "qvq-72b-preview"
|
|
152
167
|
|
|
153
168
|
# Yi models (01-ai)
|
|
154
169
|
YI_LIGHTNING = "yi-lightning"
|
|
@@ -170,6 +185,25 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
170
185
|
INTERNLM2_5_LATEST = "internlm2.5-latest"
|
|
171
186
|
INTERNLM2_PRO_CHAT = "internlm2-pro-chat"
|
|
172
187
|
|
|
188
|
+
# Moonshot models
|
|
189
|
+
MOONSHOT_V1_8K = "moonshot-v1-8k"
|
|
190
|
+
MOONSHOT_V1_32K = "moonshot-v1-32k"
|
|
191
|
+
MOONSHOT_V1_128K = "moonshot-v1-128k"
|
|
192
|
+
|
|
193
|
+
# SiliconFlow models support tool calling
|
|
194
|
+
SILICONFLOW_DEEPSEEK_V2_5 = "deepseek-ai/DeepSeek-V2.5"
|
|
195
|
+
SILICONFLOW_DEEPSEEK_V3 = "deepseek-ai/DeepSeek-V3"
|
|
196
|
+
SILICONFLOW_INTERN_LM2_5_20B_CHAT = "internlm/internlm2_5-20b-chat"
|
|
197
|
+
SILICONFLOW_INTERN_LM2_5_7B_CHAT = "internlm/internlm2_5-7b-chat"
|
|
198
|
+
SILICONFLOW_PRO_INTERN_LM2_5_7B_CHAT = "Pro/internlm/internlm2_5-7b-chat"
|
|
199
|
+
SILICONFLOW_QWEN2_5_72B_INSTRUCT = "Qwen/Qwen2.5-72B-Instruct"
|
|
200
|
+
SILICONFLOW_QWEN2_5_32B_INSTRUCT = "Qwen/Qwen2.5-32B-Instruct"
|
|
201
|
+
SILICONFLOW_QWEN2_5_14B_INSTRUCT = "Qwen/Qwen2.5-14B-Instruct"
|
|
202
|
+
SILICONFLOW_QWEN2_5_7B_INSTRUCT = "Qwen/Qwen2.5-7B-Instruct"
|
|
203
|
+
SILICONFLOW_PRO_QWEN2_5_7B_INSTRUCT = "Pro/Qwen/Qwen2.5-7B-Instruct"
|
|
204
|
+
SILICONFLOW_THUDM_GLM_4_9B_CHAT = "THUDM/glm-4-9b-chat"
|
|
205
|
+
SILICONFLOW_PRO_THUDM_GLM_4_9B_CHAT = "Pro/THUDM/glm-4-9b-chat"
|
|
206
|
+
|
|
173
207
|
def __str__(self):
|
|
174
208
|
return self.value
|
|
175
209
|
|
|
@@ -201,6 +235,9 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
201
235
|
self.is_sambanova,
|
|
202
236
|
self.is_groq,
|
|
203
237
|
self.is_sglang,
|
|
238
|
+
self.is_moonshot,
|
|
239
|
+
self.is_siliconflow,
|
|
240
|
+
self.is_zhipuai,
|
|
204
241
|
]
|
|
205
242
|
)
|
|
206
243
|
|
|
@@ -239,6 +276,16 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
239
276
|
ModelType.GLM_3_TURBO,
|
|
240
277
|
ModelType.GLM_4,
|
|
241
278
|
ModelType.GLM_4V,
|
|
279
|
+
ModelType.GLM_4V_FLASH,
|
|
280
|
+
ModelType.GLM_4V_PLUS_0111,
|
|
281
|
+
ModelType.GLM_4_PLUS,
|
|
282
|
+
ModelType.GLM_4_AIR,
|
|
283
|
+
ModelType.GLM_4_AIR_0111,
|
|
284
|
+
ModelType.GLM_4_AIRX,
|
|
285
|
+
ModelType.GLM_4_LONG,
|
|
286
|
+
ModelType.GLM_4_FLASHX,
|
|
287
|
+
ModelType.GLM_4_FLASH,
|
|
288
|
+
ModelType.GLM_ZERO_PREVIEW,
|
|
242
289
|
}
|
|
243
290
|
|
|
244
291
|
@property
|
|
@@ -286,7 +333,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
286
333
|
|
|
287
334
|
@property
|
|
288
335
|
def is_sambanova(self) -> bool:
|
|
289
|
-
r"""Returns whether this type of
|
|
336
|
+
r"""Returns whether this type of model is served by SambaNova AI."""
|
|
290
337
|
return self in {
|
|
291
338
|
ModelType.SAMBA_LLAMA_3_1_8B,
|
|
292
339
|
ModelType.SAMBA_LLAMA_3_1_70B,
|
|
@@ -335,9 +382,12 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
335
382
|
bool: Whether this type of models is gemini.
|
|
336
383
|
"""
|
|
337
384
|
return self in {
|
|
385
|
+
ModelType.GEMINI_2_0_FLASH,
|
|
338
386
|
ModelType.GEMINI_1_5_FLASH,
|
|
339
387
|
ModelType.GEMINI_1_5_PRO,
|
|
340
|
-
ModelType.
|
|
388
|
+
ModelType.GEMINI_2_0_FLASH_THINKING,
|
|
389
|
+
ModelType.GEMINI_2_0_PRO_EXP,
|
|
390
|
+
ModelType.GEMINI_2_0_FLASH_LITE_PREVIEW,
|
|
341
391
|
}
|
|
342
392
|
|
|
343
393
|
@property
|
|
@@ -400,10 +450,12 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
400
450
|
ModelType.QWEN_MATH_TURBO,
|
|
401
451
|
ModelType.QWEN_CODER_TURBO,
|
|
402
452
|
ModelType.QWEN_2_5_CODER_32B,
|
|
453
|
+
ModelType.QWEN_2_5_VL_72B,
|
|
403
454
|
ModelType.QWEN_2_5_72B,
|
|
404
455
|
ModelType.QWEN_2_5_32B,
|
|
405
456
|
ModelType.QWEN_2_5_14B,
|
|
406
457
|
ModelType.QWEN_QWQ_32B,
|
|
458
|
+
ModelType.QWEN_QVQ_72B,
|
|
407
459
|
}
|
|
408
460
|
|
|
409
461
|
@property
|
|
@@ -422,6 +474,14 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
422
474
|
ModelType.INTERNLM2_PRO_CHAT,
|
|
423
475
|
}
|
|
424
476
|
|
|
477
|
+
@property
|
|
478
|
+
def is_moonshot(self) -> bool:
|
|
479
|
+
return self in {
|
|
480
|
+
ModelType.MOONSHOT_V1_8K,
|
|
481
|
+
ModelType.MOONSHOT_V1_32K,
|
|
482
|
+
ModelType.MOONSHOT_V1_128K,
|
|
483
|
+
}
|
|
484
|
+
|
|
425
485
|
@property
|
|
426
486
|
def is_sglang(self) -> bool:
|
|
427
487
|
return self in {
|
|
@@ -436,6 +496,23 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
436
496
|
ModelType.SGLANG_QWEN_2_5_72B,
|
|
437
497
|
}
|
|
438
498
|
|
|
499
|
+
@property
|
|
500
|
+
def is_siliconflow(self) -> bool:
|
|
501
|
+
return self in {
|
|
502
|
+
ModelType.SILICONFLOW_DEEPSEEK_V2_5,
|
|
503
|
+
ModelType.SILICONFLOW_DEEPSEEK_V3,
|
|
504
|
+
ModelType.SILICONFLOW_INTERN_LM2_5_20B_CHAT,
|
|
505
|
+
ModelType.SILICONFLOW_INTERN_LM2_5_7B_CHAT,
|
|
506
|
+
ModelType.SILICONFLOW_PRO_INTERN_LM2_5_7B_CHAT,
|
|
507
|
+
ModelType.SILICONFLOW_QWEN2_5_72B_INSTRUCT,
|
|
508
|
+
ModelType.SILICONFLOW_QWEN2_5_32B_INSTRUCT,
|
|
509
|
+
ModelType.SILICONFLOW_QWEN2_5_14B_INSTRUCT,
|
|
510
|
+
ModelType.SILICONFLOW_QWEN2_5_7B_INSTRUCT,
|
|
511
|
+
ModelType.SILICONFLOW_PRO_QWEN2_5_7B_INSTRUCT,
|
|
512
|
+
ModelType.SILICONFLOW_THUDM_GLM_4_9B_CHAT,
|
|
513
|
+
ModelType.SILICONFLOW_PRO_THUDM_GLM_4_9B_CHAT,
|
|
514
|
+
}
|
|
515
|
+
|
|
439
516
|
@property
|
|
440
517
|
def token_limit(self) -> int:
|
|
441
518
|
r"""Returns the maximum token limit for a given model.
|
|
@@ -469,6 +546,9 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
469
546
|
ModelType.QWEN_VL_PLUS,
|
|
470
547
|
ModelType.NVIDIA_LLAMA3_70B,
|
|
471
548
|
ModelType.TOGETHER_MISTRAL_7B,
|
|
549
|
+
ModelType.MOONSHOT_V1_8K,
|
|
550
|
+
ModelType.GLM_4V_FLASH,
|
|
551
|
+
ModelType.GLM_4_AIRX,
|
|
472
552
|
}:
|
|
473
553
|
return 8_192
|
|
474
554
|
elif self in {
|
|
@@ -481,6 +561,8 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
481
561
|
ModelType.YI_LARGE_RAG,
|
|
482
562
|
ModelType.SAMBA_LLAMA_3_1_8B,
|
|
483
563
|
ModelType.SAMBA_LLAMA_3_1_405B,
|
|
564
|
+
ModelType.GLM_4V_PLUS_0111,
|
|
565
|
+
ModelType.GLM_ZERO_PREVIEW,
|
|
484
566
|
}:
|
|
485
567
|
return 16_384
|
|
486
568
|
elif self in {
|
|
@@ -496,12 +578,14 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
496
578
|
ModelType.NVIDIA_MISTRAL_LARGE,
|
|
497
579
|
ModelType.NVIDIA_MIXTRAL_8X7B,
|
|
498
580
|
ModelType.QWEN_QWQ_32B,
|
|
581
|
+
ModelType.QWEN_QVQ_72B,
|
|
499
582
|
ModelType.INTERNLM3_8B_INSTRUCT,
|
|
500
583
|
ModelType.INTERNLM3_LATEST,
|
|
501
584
|
ModelType.INTERNLM2_5_LATEST,
|
|
502
585
|
ModelType.INTERNLM2_PRO_CHAT,
|
|
503
586
|
ModelType.TOGETHER_MIXTRAL_8_7B,
|
|
504
587
|
ModelType.SGLANG_MISTRAL_7B,
|
|
588
|
+
ModelType.MOONSHOT_V1_32K,
|
|
505
589
|
}:
|
|
506
590
|
return 32_768
|
|
507
591
|
elif self in {
|
|
@@ -527,6 +611,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
527
611
|
ModelType.MISTRAL_8B,
|
|
528
612
|
ModelType.MISTRAL_3B,
|
|
529
613
|
ModelType.QWEN_2_5_CODER_32B,
|
|
614
|
+
ModelType.QWEN_2_5_VL_72B,
|
|
530
615
|
ModelType.QWEN_2_5_72B,
|
|
531
616
|
ModelType.QWEN_2_5_32B,
|
|
532
617
|
ModelType.QWEN_2_5_14B,
|
|
@@ -546,6 +631,12 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
546
631
|
ModelType.SGLANG_LLAMA_3_1_405B,
|
|
547
632
|
ModelType.SGLANG_LLAMA_3_2_1B,
|
|
548
633
|
ModelType.SGLANG_MIXTRAL_NEMO,
|
|
634
|
+
ModelType.MOONSHOT_V1_128K,
|
|
635
|
+
ModelType.GLM_4_PLUS,
|
|
636
|
+
ModelType.GLM_4_AIR,
|
|
637
|
+
ModelType.GLM_4_AIR_0111,
|
|
638
|
+
ModelType.GLM_4_FLASHX,
|
|
639
|
+
ModelType.GLM_4_FLASH,
|
|
549
640
|
}:
|
|
550
641
|
return 128_000
|
|
551
642
|
elif self in {
|
|
@@ -579,9 +670,13 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
579
670
|
}:
|
|
580
671
|
return 256_000
|
|
581
672
|
elif self in {
|
|
673
|
+
ModelType.GEMINI_2_0_FLASH,
|
|
582
674
|
ModelType.GEMINI_1_5_FLASH,
|
|
583
675
|
ModelType.GEMINI_1_5_PRO,
|
|
584
|
-
ModelType.
|
|
676
|
+
ModelType.GEMINI_2_0_FLASH_THINKING,
|
|
677
|
+
ModelType.GEMINI_2_0_FLASH_LITE_PREVIEW,
|
|
678
|
+
ModelType.GEMINI_2_0_PRO_EXP, # Not given in doc, assume the same
|
|
679
|
+
ModelType.GLM_4_LONG,
|
|
585
680
|
}:
|
|
586
681
|
return 1_048_576
|
|
587
682
|
elif self in {
|
|
@@ -767,6 +862,8 @@ class ModelPlatformType(Enum):
|
|
|
767
862
|
DEEPSEEK = "deepseek"
|
|
768
863
|
SGLANG = "sglang"
|
|
769
864
|
INTERNLM = "internlm"
|
|
865
|
+
MOONSHOT = "moonshot"
|
|
866
|
+
SILICONFLOW = "siliconflow"
|
|
770
867
|
|
|
771
868
|
@property
|
|
772
869
|
def is_openai(self) -> bool:
|
|
@@ -874,6 +971,16 @@ class ModelPlatformType(Enum):
|
|
|
874
971
|
r"""Returns whether this platform is InternLM."""
|
|
875
972
|
return self is ModelPlatformType.INTERNLM
|
|
876
973
|
|
|
974
|
+
@property
|
|
975
|
+
def is_moonshot(self) -> bool:
|
|
976
|
+
r"""Returns whether this platform is Moonshot model."""
|
|
977
|
+
return self is ModelPlatformType.MOONSHOT
|
|
978
|
+
|
|
979
|
+
@property
|
|
980
|
+
def is_siliconflow(self) -> bool:
|
|
981
|
+
r"""Returns whether this platform is SiliconFlow."""
|
|
982
|
+
return self is ModelPlatformType.SILICONFLOW
|
|
983
|
+
|
|
877
984
|
|
|
878
985
|
class AudioModelType(Enum):
|
|
879
986
|
TTS_1 = "tts-1"
|
|
@@ -118,6 +118,11 @@ class UnifiedModelType(str):
|
|
|
118
118
|
r"""Returns whether the model is a InternLM model."""
|
|
119
119
|
return True
|
|
120
120
|
|
|
121
|
+
@property
|
|
122
|
+
def is_moonshot(self) -> bool:
|
|
123
|
+
r"""Returns whether this platform is Moonshot model."""
|
|
124
|
+
return True
|
|
125
|
+
|
|
121
126
|
@property
|
|
122
127
|
def support_native_structured_output(self) -> bool:
|
|
123
128
|
r"""Returns whether the model supports native structured output."""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.20a1
|
|
4
4
|
Summary: Communicative Agents for AI Society Study
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Keywords: communicative-ai,ai-societies,artificial-intelligence,deep-learning,multi-agent-systems,cooperative-ai,natural-language-processing,large-language-models
|
|
@@ -408,7 +408,8 @@ Practical guides and tutorials for implementing specific functionalities in CAME
|
|
|
408
408
|
| **[CoT Data Generation and SFT Qwen with Unsolth](https://docs.camel-ai.org/cookbooks/data_generation/cot_data_gen_sft_qwen_unsolth_upload_huggingface.html)** | Discover how to generate CoT data using CAMEL and SFT Qwen with Unsolth, and seamlessly upload your data and model to Huggingface. |
|
|
409
409
|
| **[Agentic Data Generation, Evaluation & Filtering with Reward Models](https://docs.camel-ai.org/cookbooks/data_generation/synthetic_dataevaluation&filter_with_reward_model.html)** | Discover methods for generating, evaluating, and filtering agentic data using reward models to enhance the quality and efficiency of your synthetic data pipelines. |
|
|
410
410
|
| **[Data Model Generation and Structured Output with Qwen Model](https://docs.camel-ai.org/cookbooks/data_generation/data_model_generation_and_structured_output_with_qwen.html)** |Learn how to generate data models and structured outputs using the Qwen Model for improved data representation.|
|
|
411
|
-
|
|
411
|
+
| **[Distill Math Reasoning Data from DeepSeek R1](https://docs.camel-ai.org/cookbooks/data_generation/distill_math_reasoning_data_from_deepseek_r1.html)** |Learn how to set up and leverage CAMEL's data distillation pipline for distilling high-quality maths reasoning data with thought process (Long CoT data)from deepseek R1, and uploading the results to Hugging Face.|
|
|
412
|
+
| **[Self-Improving Math Reasoning Data Distillation from DeepSeek R1](https://docs.camel-ai.org/cookbooks/data_generation/self_improving_math_reasoning_data_distillation_from_deepSeek_r1.html)** |Learn how to set up and leverage CAMEL's data distillation pipline for self-improving math reasoning data distillation from deepseek R1, and uploading the results to Hugging Face.|
|
|
412
413
|
|
|
413
414
|
### Multi-Agent Systems & Applications
|
|
414
415
|
| Cookbook | Description |
|
|
@@ -459,6 +460,8 @@ We implemented amazing research ideas from other works for you to build, compare
|
|
|
459
460
|
|
|
460
461
|
- `Source2Synth` from *Alisia Lupidi et al.*: [Source2Synth: Synthetic Data Generation and Curation Grounded in Real Data Sources](https://arxiv.org/abs/2409.08239). [[Example](https://github.com/camel-ai/camel/blob/master/examples/datagen/source2synth.py)]
|
|
461
462
|
|
|
463
|
+
- `STaR` from *Eric Zelikman et al.*: [STaR: Bootstrapping Reasoning With Reasoning](https://arxiv.org/abs/2203.14465). [[Example](https://github.com/camel-ai/camel/blob/master/examples/datagen/star)]
|
|
464
|
+
|
|
462
465
|
## Other Research Works Based on Camel
|
|
463
466
|
- [Agent Trust](http://agent-trust.camel-ai.org/): Can Large Language Model Agents Simulate Human Trust Behavior?
|
|
464
467
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=zgG4-mx5gTO_pjz2Ywrrtw5SNsd7W1maeCZXLVVmDR8,914
|
|
2
2
|
camel/agents/__init__.py,sha256=LcS4m8s97-yADfznvcaAdUe9W0E9h3m6zrSc9H6m9so,1545
|
|
3
3
|
camel/agents/base.py,sha256=c4bJYL3G3Z41SaFdMPMn8ZjLdFiFaVOFO6EQIfuCVR8,1124
|
|
4
|
-
camel/agents/chat_agent.py,sha256=
|
|
4
|
+
camel/agents/chat_agent.py,sha256=UVfSbv1QxxZOQwPYf11MmwHps9xKObF0pzGpStZvpTA,56562
|
|
5
5
|
camel/agents/critic_agent.py,sha256=qFVlHlQo0CVgmPWfWYLT8_oP_KyzCLFsQw_nN_vu5Bs,7487
|
|
6
6
|
camel/agents/deductive_reasoner_agent.py,sha256=6BZGaq1hR6hKJuQtOfoYQnk_AkZpw_Mr7mUy2MspQgs,13540
|
|
7
7
|
camel/agents/embodied_agent.py,sha256=XBxBu5ZMmSJ4B2U3Z7SMwvLlgp6yNpaBe8HNQmY9CZA,7536
|
|
@@ -30,7 +30,7 @@ camel/bots/slack/__init__.py,sha256=iqySoYftEb7SI4pabhMvvTp1YYS09BvjwGXPEbcP1Hc,
|
|
|
30
30
|
camel/bots/slack/models.py,sha256=xMz3RO-88yrxPRrbBDjiabpbZIlpEHCvU-1CvASKARc,5143
|
|
31
31
|
camel/bots/slack/slack_app.py,sha256=SoSRZZnuTJ0aiLUBZqdG8cUFJzYpfpZh7304t0a_7Dg,9944
|
|
32
32
|
camel/bots/telegram_bot.py,sha256=gnyxToSHkjRpNDoCWBNv59WcdxeocVJHU2S4jexzM2E,2741
|
|
33
|
-
camel/configs/__init__.py,sha256=
|
|
33
|
+
camel/configs/__init__.py,sha256=w91VRHtVdl_WQJtKeGj3u58wwhI73mKXu-L0fMWoF8k,3148
|
|
34
34
|
camel/configs/anthropic_config.py,sha256=WIIyPYx7z70jiJoCc1Rz_58jrXRirpyJMlr0FrIii2I,3435
|
|
35
35
|
camel/configs/base_config.py,sha256=RrlOwwTUXeTjsDChZXUZIBK1uCojyavEbX21bGVLuog,3286
|
|
36
36
|
camel/configs/cohere_config.py,sha256=joF4GHqoTIRuEDlyTmxW5Ud23psE0xP1VCcEvKychko,3997
|
|
@@ -40,6 +40,7 @@ camel/configs/groq_config.py,sha256=Xe82_EbEYfacNXQApIHZiXw-NscufZxnLau72YEy_iA,
|
|
|
40
40
|
camel/configs/internlm_config.py,sha256=I1Hcyj5r3Sq7WUu0ypEUroqtOGbI2dXawUS6GVGhW6U,2979
|
|
41
41
|
camel/configs/litellm_config.py,sha256=oa6b67M0UotlvN7NuXrSUXLrskdpm3RMcew0rBfSsBc,4686
|
|
42
42
|
camel/configs/mistral_config.py,sha256=ul7AAeG3172PtodEEruAZky0OURwgp6YeNq8ma-4os4,3463
|
|
43
|
+
camel/configs/moonshot_config.py,sha256=IIGeGEAXd4y7FaZ7uNTAAYOYuaBy4YFMusJjuFvfO4w,2779
|
|
43
44
|
camel/configs/nvidia_config.py,sha256=1Oc3tulHOqAfx1mkrEywrxKIV1SBNzPm0CNrWgj9HXo,3226
|
|
44
45
|
camel/configs/ollama_config.py,sha256=oEYSgieliXFyvZWs-de-ZsSZVzhoDUC_oyCx1GW3HYY,4403
|
|
45
46
|
camel/configs/openai_config.py,sha256=CRqM00fA4mXsaADuhwbwwceW3t4o0ae9_7CiKjJg1gI,7448
|
|
@@ -47,6 +48,7 @@ camel/configs/qwen_config.py,sha256=wLzkv0G3qzcqRN31oHv-6OXKcB1-ILlROj4xgdFSmPM,
|
|
|
47
48
|
camel/configs/reka_config.py,sha256=QhTa4hUKz_TF3txTJRNlLSJ391uphEqZOG0zev6bI7w,3498
|
|
48
49
|
camel/configs/samba_config.py,sha256=2__Xj0HIsFWN38rsbZl9a-lXwOO5XHXoo_j7VwiUDpA,8825
|
|
49
50
|
camel/configs/sglang_config.py,sha256=EFr5TE8kXiZbx2lKm4r3Y5noDHGTIOPL6IlQHDum6kQ,3796
|
|
51
|
+
camel/configs/siliconflow_config.py,sha256=9SyBKMR_a1Usj6jRkbvk-wXAwllMdKnKNoPEwTaFTU4,4018
|
|
50
52
|
camel/configs/togetherai_config.py,sha256=bzFlDPR78NwvGCIPAhplITiy8WsGrdK4IDBbfQ7xGSw,5655
|
|
51
53
|
camel/configs/vllm_config.py,sha256=9F81FtJGbO8T3aGFggDOVUL5qequPmg882ZSXjIeFW0,6110
|
|
52
54
|
camel/configs/yi_config.py,sha256=ZvrOroEdYgdyBWcYxn3CHyOA64P5I16XBVbgfusxaPQ,2745
|
|
@@ -70,11 +72,11 @@ camel/datagen/source2synth/models.py,sha256=gTdiKoGeHrZBPPOts6mKU9ZeUKh21uDcrCls
|
|
|
70
72
|
camel/datagen/source2synth/user_data_processor_config.py,sha256=WpIePsxzFbpv3wFl0Wpe6kl0fJmR2AajiBH2OOJvFC0,2409
|
|
71
73
|
camel/datahubs/__init__.py,sha256=1a8fRuzgirO2pHtPnuisZ76iF_AN9GxMFq9gwFKWE5I,906
|
|
72
74
|
camel/datahubs/base.py,sha256=4QKWiJaeL5ReQpyTAbOtzHs-2CzAYbVyoMngYwdpZGU,4357
|
|
73
|
-
camel/datahubs/huggingface.py,sha256=
|
|
75
|
+
camel/datahubs/huggingface.py,sha256=m1LDBv9ESNQINfiZdBpuVD5Zr1_iZqo-5LBYHXHhXw8,14853
|
|
74
76
|
camel/datahubs/models.py,sha256=tGb9OP_aomIhnwc0VapJjTg9PmyV_QCp5to9sABXF0Y,978
|
|
75
77
|
camel/embeddings/__init__.py,sha256=YKCFO_YVY-x4A4uWmRuoIEtltrilBmC17DkCcK4zSj8,1263
|
|
76
78
|
camel/embeddings/base.py,sha256=mxqFkWh2AfbxuVKPOqVx16fCznmuSh9QXGjaEeZHvoY,2190
|
|
77
|
-
camel/embeddings/jina_embedding.py,sha256=
|
|
79
|
+
camel/embeddings/jina_embedding.py,sha256=6aakojtsJ6KLp3nqYLhEOtoFm2shoXlRzxb1YYN_uwo,6623
|
|
78
80
|
camel/embeddings/mistral_embedding.py,sha256=JaHjcHrc4U216QfGA4NxOSLrgYB9lM19VR2mIMAkuvk,3287
|
|
79
81
|
camel/embeddings/openai_compatible_embedding.py,sha256=48T1fNUkgifoPiVHPJ7HJERekP1sENy3t07S1ENiwWk,3158
|
|
80
82
|
camel/embeddings/openai_embedding.py,sha256=DZh5OuXzBo1fMXifgyStUMm_BFaK1vQYrKdFtXqLKdg,3655
|
|
@@ -118,7 +120,7 @@ camel/messages/conversion/sharegpt/function_call_formatter.py,sha256=cn7e7CfmxEV
|
|
|
118
120
|
camel/messages/conversion/sharegpt/hermes/__init__.py,sha256=mxuMSm-neaTgInIjYXuIVdC310E6jKJzM3IdtaJ4qY4,812
|
|
119
121
|
camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py,sha256=-9TT8iOQ-ieKSKR_PmJSA5Bi0uBx-qR7WQ6vxuFkorM,4639
|
|
120
122
|
camel/messages/func_message.py,sha256=EjsUor40oUUKrHwolRpCH0sJECcqnp2mm4072tNWTPg,5939
|
|
121
|
-
camel/models/__init__.py,sha256=
|
|
123
|
+
camel/models/__init__.py,sha256=lwSfNXSrM3Xcj39nqmOopoEpdKcPLQPe3I_O9smYEqk,2519
|
|
122
124
|
camel/models/anthropic_model.py,sha256=BOj4vEtYVWbgy3DmBBlFh6LPXHbi1-LCPWzIxFuw9u4,5829
|
|
123
125
|
camel/models/azure_openai_model.py,sha256=ptL4YK8KkAbOA6XDxIhcEqxPOVGrYmzXqBzdsZAyHss,6083
|
|
124
126
|
camel/models/base_model.py,sha256=rxRZc31cKone4OGuvXi14FI_O9TC1aBvIy8WFSlVeSI,5727
|
|
@@ -130,8 +132,9 @@ camel/models/groq_model.py,sha256=gDLv1_gOIioNmTh7I_efM5FMEsELqeQGAtY7ipd85TU,49
|
|
|
130
132
|
camel/models/internlm_model.py,sha256=khWd570OU3OZJpjGhmq81tJ_OsZM1m3zcyNDmdTmgqo,5114
|
|
131
133
|
camel/models/litellm_model.py,sha256=-9DcJlVBL25vsZOdA0UkEWt5G5PP8QaXXhcE2PRiwRw,5296
|
|
132
134
|
camel/models/mistral_model.py,sha256=7OUTdTKzYPGYdi0n_hBAawlplYVR6XyvfzANHki660c,10182
|
|
133
|
-
camel/models/model_factory.py,sha256=
|
|
135
|
+
camel/models/model_factory.py,sha256=R8_2T5wXhRkIFSsQpDH-BAfT8XU_l1W_hN1i-2mEiFA,6613
|
|
134
136
|
camel/models/model_manager.py,sha256=ji1d1S-2lwk6uDggSyTnXbalu2F5lHaZnfPBBCJwBxU,7159
|
|
137
|
+
camel/models/moonshot_model.py,sha256=m4OFqTZfw8n1RCjsC4-WP5Gih1aMI3sUaX3oo7OpSQU,5023
|
|
135
138
|
camel/models/nemotron_model.py,sha256=f663rRrybuAQgBCzaYW-myLp8nZM7S0N14MmOblfB3w,2958
|
|
136
139
|
camel/models/nvidia_model.py,sha256=7THp2MECXYBUpJWTZkkgGQqgsLfjXPMVb1aGWFA1vdg,5247
|
|
137
140
|
camel/models/ollama_model.py,sha256=uiIgXmz6EqRsi3mBh8RAWopOom6rM77H4fP_Hp8cj3U,6057
|
|
@@ -147,6 +150,7 @@ camel/models/reward/nemotron_model.py,sha256=EICDP2SyQpARupxsGWFKJHNADsVknT_t6tC
|
|
|
147
150
|
camel/models/reward/skywork_model.py,sha256=KxHVDuwja2kZBCoCX8_sLBbXUGRSFsTPjgwsy1uyoyU,3246
|
|
148
151
|
camel/models/samba_model.py,sha256=5i3JgjLMFAFspdEwNIzWKMobM4xrDtO4aFXMHhEfJyU,14532
|
|
149
152
|
camel/models/sglang_model.py,sha256=dXOPSdskfF-gK2XUkzPkbTzY1lBVyjMEV6XWl-rEN7U,8147
|
|
153
|
+
camel/models/siliconflow_model.py,sha256=I7kTGk4RSjvX5vCCM8tRBhGBENw0VfXgv29Gt6bKTcI,5125
|
|
150
154
|
camel/models/stub_model.py,sha256=TKTTryatEqCfjQ8NTco9ipj29CbLLtmWEcF_VcaWvQI,3703
|
|
151
155
|
camel/models/togetherai_model.py,sha256=hgeSgV4xCpBUvYqAYILNcRBiHlExoA1nR1tu0CgG-sw,5298
|
|
152
156
|
camel/models/vllm_model.py,sha256=e57qjaHsZ-RTCsMVdMoyM-gseJwjtxiG2ePBKO5dnOQ,5640
|
|
@@ -233,7 +237,7 @@ camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls
|
|
|
233
237
|
camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
|
|
234
238
|
camel/terminators/response_terminator.py,sha256=n3G5KP6Oj7-7WlRN0yFcrtLpqAJKaKS0bmhrWlFfCgQ,4982
|
|
235
239
|
camel/terminators/token_limit_terminator.py,sha256=YWv6ZR8R9yI2Qnf_3xES5bEE_O5bb2CxQ0EUXfMh34c,2118
|
|
236
|
-
camel/toolkits/__init__.py,sha256=
|
|
240
|
+
camel/toolkits/__init__.py,sha256=TEAoAfqnI8MZ7kUAcdWu2Zqf2SYLTpf9qifBETK0zu8,2794
|
|
237
241
|
camel/toolkits/arxiv_toolkit.py,sha256=I9WEUturZhbL5gQIgX_8bKttuJUlMKHcvUfhcidFVhs,6204
|
|
238
242
|
camel/toolkits/ask_news_toolkit.py,sha256=PIFGGVHpSOXs2lg-zA6qhlHF17f1CyCjGbpud90yG8I,23158
|
|
239
243
|
camel/toolkits/base.py,sha256=XnERVclg201dG7BrawwbuSeSlkz1ngIfatES1ingpkA,1264
|
|
@@ -279,7 +283,8 @@ camel/toolkits/open_api_toolkit.py,sha256=Venfq8JwTMQfzRzzB7AYmYUMEX35hW0BjIv_oz
|
|
|
279
283
|
camel/toolkits/openbb_toolkit.py,sha256=tq4ER2utf9y4nsibU7g7jnRefA3UHw4DdXQlSrFhvJk,28802
|
|
280
284
|
camel/toolkits/reddit_toolkit.py,sha256=tb0qwgtawgWe-PPotKVsKqMqkSiACP6k9MzKHuMbkXU,8886
|
|
281
285
|
camel/toolkits/retrieval_toolkit.py,sha256=gMHk-Y-KDROGd-yX9ykfpwAf6ViO678j9Q9Ju3sfBGo,3695
|
|
282
|
-
camel/toolkits/search_toolkit.py,sha256=
|
|
286
|
+
camel/toolkits/search_toolkit.py,sha256=4yTYkook3E3Yb-EOaio2O6FBcvzIXlVVC4WOvNSaYcw,29881
|
|
287
|
+
camel/toolkits/semantic_scholar_toolkit.py,sha256=z7xF3lPtBVXbpYMBDX9eVeHKpTZAg5rKiDnB1bCkhvU,11472
|
|
283
288
|
camel/toolkits/slack_toolkit.py,sha256=n8cn3kZIc27B-2KMTRK6Nsdan37SwMqBiBi1PMtuUvQ,10744
|
|
284
289
|
camel/toolkits/stripe_toolkit.py,sha256=cQJlzu7qXSiClazgr-D3xRAcI_PK_csTT-xcwaTrHYc,9623
|
|
285
290
|
camel/toolkits/twitter_toolkit.py,sha256=a2OLSJSW2wY7pOwOApb1qchZPXzH22Rbgm9Yd7-7vrA,15826
|
|
@@ -287,16 +292,16 @@ camel/toolkits/video_toolkit.py,sha256=n1P7F_cjdnC2jfUQQiJnhueRYA83GIjUF7HWIrES5
|
|
|
287
292
|
camel/toolkits/weather_toolkit.py,sha256=qHAMD56zqd5GWnEWiaA_0aBDwvgacdx0pAHScinY4GY,6965
|
|
288
293
|
camel/toolkits/whatsapp_toolkit.py,sha256=H_83AFCIoBMvZUcfUvfRTIAjfR2DR79xP2J-rfQKtNo,6326
|
|
289
294
|
camel/types/__init__.py,sha256=_NYwmy412tubPYJon26fS9itGnylP48NLFKgwyMiJNs,2251
|
|
290
|
-
camel/types/enums.py,sha256=
|
|
295
|
+
camel/types/enums.py,sha256=V5JT7MKtHNPjC1XP11acpi8nZqwEohw1YY8I6kmri9o,33191
|
|
291
296
|
camel/types/openai_types.py,sha256=7Vlci1uRbpSS81B958Z8ADnkzVyqxV7O5H8hv0i-tdo,2328
|
|
292
|
-
camel/types/unified_model_type.py,sha256=
|
|
297
|
+
camel/types/unified_model_type.py,sha256=GP5GYtA3RfvLsqnk1c4UcOaRKMFhjDgZrLr0ln6JFw8,4253
|
|
293
298
|
camel/utils/__init__.py,sha256=0K8HKzUlOStBjo9Mt3tgFbv6YINMIiF0b7MSWRyZ-NA,2471
|
|
294
299
|
camel/utils/async_func.py,sha256=4esRhhGrvfm-iJRloUbU-sYWyHp_mt0bBBXpwyCv6vc,1556
|
|
295
300
|
camel/utils/commons.py,sha256=Ph5O_vihyH85BfQ-A4Z2kc0uO45QXtwQr0qbfpbK6Rg,21934
|
|
296
301
|
camel/utils/constants.py,sha256=MQD3bgLIq_NATp0D1iFkrwfkCwVX-PAOSXheTkkEdkY,1410
|
|
297
302
|
camel/utils/response_format.py,sha256=9KrbwtOM9cA3LSjTgLiK7oKy-53_uMh1cvpyNwwJpng,2419
|
|
298
303
|
camel/utils/token_counting.py,sha256=jJSK_kJKovuDESP2WuYVGHWS7Q-xTMIQsLK0AMS_Nw8,15345
|
|
299
|
-
camel_ai-0.2.
|
|
300
|
-
camel_ai-0.2.
|
|
301
|
-
camel_ai-0.2.
|
|
302
|
-
camel_ai-0.2.
|
|
304
|
+
camel_ai-0.2.20a1.dist-info/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
|
|
305
|
+
camel_ai-0.2.20a1.dist-info/METADATA,sha256=oMw9mJjQqapqKrojwW3wnvXZgCThgHiSQXb_xpOKhAk,36585
|
|
306
|
+
camel_ai-0.2.20a1.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
307
|
+
camel_ai-0.2.20a1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|