camel-ai 0.2.67__py3-none-any.whl → 0.2.80a2__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/agents/_types.py +6 -2
- camel/agents/_utils.py +38 -0
- camel/agents/chat_agent.py +4014 -410
- camel/agents/mcp_agent.py +30 -27
- camel/agents/repo_agent.py +2 -1
- camel/benchmarks/browsecomp.py +6 -6
- camel/configs/__init__.py +15 -0
- camel/configs/aihubmix_config.py +88 -0
- camel/configs/amd_config.py +70 -0
- camel/configs/cometapi_config.py +104 -0
- camel/configs/minimax_config.py +93 -0
- camel/configs/nebius_config.py +103 -0
- camel/configs/vllm_config.py +2 -0
- camel/data_collectors/alpaca_collector.py +15 -6
- camel/datagen/self_improving_cot.py +1 -1
- camel/datasets/base_generator.py +39 -10
- camel/environments/__init__.py +12 -0
- camel/environments/rlcards_env.py +860 -0
- camel/environments/single_step.py +28 -3
- camel/environments/tic_tac_toe.py +1 -1
- camel/interpreters/__init__.py +2 -0
- camel/interpreters/docker/Dockerfile +4 -16
- camel/interpreters/docker_interpreter.py +3 -2
- camel/interpreters/e2b_interpreter.py +34 -1
- camel/interpreters/internal_python_interpreter.py +51 -2
- camel/interpreters/microsandbox_interpreter.py +395 -0
- camel/loaders/__init__.py +11 -2
- camel/loaders/base_loader.py +85 -0
- camel/loaders/chunkr_reader.py +9 -0
- camel/loaders/firecrawl_reader.py +4 -4
- camel/logger.py +1 -1
- camel/memories/agent_memories.py +84 -1
- camel/memories/base.py +34 -0
- camel/memories/blocks/chat_history_block.py +122 -4
- camel/memories/blocks/vectordb_block.py +8 -1
- camel/memories/context_creators/score_based.py +29 -237
- camel/memories/records.py +88 -8
- camel/messages/base.py +166 -40
- camel/messages/func_message.py +32 -5
- camel/models/__init__.py +10 -0
- camel/models/aihubmix_model.py +83 -0
- camel/models/aiml_model.py +1 -16
- camel/models/amd_model.py +101 -0
- camel/models/anthropic_model.py +117 -18
- camel/models/aws_bedrock_model.py +2 -33
- camel/models/azure_openai_model.py +205 -91
- camel/models/base_audio_model.py +3 -1
- camel/models/base_model.py +189 -24
- camel/models/cohere_model.py +5 -17
- camel/models/cometapi_model.py +83 -0
- camel/models/crynux_model.py +1 -16
- camel/models/deepseek_model.py +6 -16
- camel/models/fish_audio_model.py +6 -0
- camel/models/gemini_model.py +71 -20
- camel/models/groq_model.py +1 -17
- camel/models/internlm_model.py +1 -16
- camel/models/litellm_model.py +49 -32
- camel/models/lmstudio_model.py +1 -17
- camel/models/minimax_model.py +83 -0
- camel/models/mistral_model.py +1 -16
- camel/models/model_factory.py +27 -1
- camel/models/model_manager.py +24 -6
- camel/models/modelscope_model.py +1 -16
- camel/models/moonshot_model.py +185 -19
- camel/models/nebius_model.py +83 -0
- camel/models/nemotron_model.py +0 -5
- camel/models/netmind_model.py +1 -16
- camel/models/novita_model.py +1 -16
- camel/models/nvidia_model.py +1 -16
- camel/models/ollama_model.py +4 -19
- camel/models/openai_compatible_model.py +171 -46
- camel/models/openai_model.py +205 -77
- camel/models/openrouter_model.py +1 -17
- camel/models/ppio_model.py +1 -16
- camel/models/qianfan_model.py +1 -16
- camel/models/qwen_model.py +1 -16
- camel/models/reka_model.py +1 -16
- camel/models/samba_model.py +34 -47
- camel/models/sglang_model.py +64 -31
- camel/models/siliconflow_model.py +1 -16
- camel/models/stub_model.py +0 -4
- camel/models/togetherai_model.py +1 -16
- camel/models/vllm_model.py +1 -16
- camel/models/volcano_model.py +0 -17
- camel/models/watsonx_model.py +1 -16
- camel/models/yi_model.py +1 -16
- camel/models/zhipuai_model.py +60 -16
- camel/parsers/__init__.py +18 -0
- camel/parsers/mcp_tool_call_parser.py +176 -0
- camel/retrievers/auto_retriever.py +1 -0
- camel/runtimes/configs.py +11 -11
- camel/runtimes/daytona_runtime.py +15 -16
- camel/runtimes/docker_runtime.py +6 -6
- camel/runtimes/remote_http_runtime.py +5 -5
- camel/services/agent_openapi_server.py +380 -0
- camel/societies/__init__.py +2 -0
- camel/societies/role_playing.py +26 -28
- camel/societies/workforce/__init__.py +2 -0
- camel/societies/workforce/events.py +122 -0
- camel/societies/workforce/prompts.py +249 -38
- camel/societies/workforce/role_playing_worker.py +82 -20
- camel/societies/workforce/single_agent_worker.py +634 -34
- camel/societies/workforce/structured_output_handler.py +512 -0
- camel/societies/workforce/task_channel.py +169 -23
- camel/societies/workforce/utils.py +176 -9
- camel/societies/workforce/worker.py +77 -23
- camel/societies/workforce/workflow_memory_manager.py +772 -0
- camel/societies/workforce/workforce.py +3168 -478
- camel/societies/workforce/workforce_callback.py +74 -0
- camel/societies/workforce/workforce_logger.py +203 -175
- camel/societies/workforce/workforce_metrics.py +33 -0
- camel/storages/__init__.py +4 -0
- camel/storages/key_value_storages/json.py +15 -2
- camel/storages/key_value_storages/mem0_cloud.py +48 -47
- camel/storages/object_storages/google_cloud.py +1 -1
- camel/storages/vectordb_storages/__init__.py +6 -0
- camel/storages/vectordb_storages/chroma.py +731 -0
- camel/storages/vectordb_storages/oceanbase.py +13 -13
- camel/storages/vectordb_storages/pgvector.py +349 -0
- camel/storages/vectordb_storages/qdrant.py +3 -3
- camel/storages/vectordb_storages/surreal.py +365 -0
- camel/storages/vectordb_storages/tidb.py +8 -6
- camel/tasks/task.py +244 -27
- camel/toolkits/__init__.py +46 -8
- camel/toolkits/aci_toolkit.py +64 -19
- camel/toolkits/arxiv_toolkit.py +6 -6
- camel/toolkits/base.py +63 -5
- camel/toolkits/code_execution.py +28 -1
- camel/toolkits/context_summarizer_toolkit.py +684 -0
- camel/toolkits/craw4ai_toolkit.py +93 -0
- camel/toolkits/dappier_toolkit.py +10 -6
- camel/toolkits/dingtalk.py +1135 -0
- camel/toolkits/edgeone_pages_mcp_toolkit.py +49 -0
- camel/toolkits/excel_toolkit.py +901 -67
- camel/toolkits/file_toolkit.py +1402 -0
- camel/toolkits/function_tool.py +30 -6
- camel/toolkits/github_toolkit.py +107 -20
- camel/toolkits/gmail_toolkit.py +1839 -0
- camel/toolkits/google_calendar_toolkit.py +38 -4
- camel/toolkits/google_drive_mcp_toolkit.py +54 -0
- camel/toolkits/human_toolkit.py +34 -10
- camel/toolkits/hybrid_browser_toolkit/__init__.py +18 -0
- camel/toolkits/hybrid_browser_toolkit/config_loader.py +185 -0
- camel/toolkits/hybrid_browser_toolkit/hybrid_browser_toolkit.py +246 -0
- camel/toolkits/hybrid_browser_toolkit/hybrid_browser_toolkit_ts.py +1973 -0
- camel/toolkits/hybrid_browser_toolkit/installer.py +203 -0
- camel/toolkits/hybrid_browser_toolkit/ts/package-lock.json +3749 -0
- camel/toolkits/hybrid_browser_toolkit/ts/package.json +32 -0
- camel/toolkits/hybrid_browser_toolkit/ts/src/browser-scripts.js +125 -0
- camel/toolkits/hybrid_browser_toolkit/ts/src/browser-session.ts +1815 -0
- camel/toolkits/hybrid_browser_toolkit/ts/src/config-loader.ts +233 -0
- camel/toolkits/hybrid_browser_toolkit/ts/src/hybrid-browser-toolkit.ts +590 -0
- camel/toolkits/hybrid_browser_toolkit/ts/src/index.ts +7 -0
- camel/toolkits/hybrid_browser_toolkit/ts/src/parent-child-filter.ts +226 -0
- camel/toolkits/hybrid_browser_toolkit/ts/src/snapshot-parser.ts +219 -0
- camel/toolkits/hybrid_browser_toolkit/ts/src/som-screenshot-injected.ts +543 -0
- camel/toolkits/hybrid_browser_toolkit/ts/src/types.ts +130 -0
- camel/toolkits/hybrid_browser_toolkit/ts/tsconfig.json +26 -0
- camel/toolkits/hybrid_browser_toolkit/ts/websocket-server.js +319 -0
- camel/toolkits/hybrid_browser_toolkit/ws_wrapper.py +1032 -0
- camel/toolkits/hybrid_browser_toolkit_py/__init__.py +17 -0
- camel/toolkits/hybrid_browser_toolkit_py/actions.py +575 -0
- camel/toolkits/hybrid_browser_toolkit_py/agent.py +311 -0
- camel/toolkits/hybrid_browser_toolkit_py/browser_session.py +787 -0
- camel/toolkits/hybrid_browser_toolkit_py/config_loader.py +490 -0
- camel/toolkits/hybrid_browser_toolkit_py/hybrid_browser_toolkit.py +2390 -0
- camel/toolkits/hybrid_browser_toolkit_py/snapshot.py +233 -0
- camel/toolkits/hybrid_browser_toolkit_py/stealth_script.js +0 -0
- camel/toolkits/hybrid_browser_toolkit_py/unified_analyzer.js +1043 -0
- camel/toolkits/image_generation_toolkit.py +390 -0
- camel/toolkits/jina_reranker_toolkit.py +3 -4
- camel/toolkits/klavis_toolkit.py +5 -1
- camel/toolkits/markitdown_toolkit.py +104 -0
- camel/toolkits/math_toolkit.py +64 -10
- camel/toolkits/mcp_toolkit.py +370 -45
- camel/toolkits/memory_toolkit.py +5 -1
- camel/toolkits/message_agent_toolkit.py +608 -0
- camel/toolkits/message_integration.py +724 -0
- camel/toolkits/minimax_mcp_toolkit.py +195 -0
- camel/toolkits/note_taking_toolkit.py +277 -0
- camel/toolkits/notion_mcp_toolkit.py +224 -0
- camel/toolkits/openbb_toolkit.py +5 -1
- camel/toolkits/origene_mcp_toolkit.py +56 -0
- camel/toolkits/playwright_mcp_toolkit.py +12 -31
- camel/toolkits/pptx_toolkit.py +25 -12
- camel/toolkits/resend_toolkit.py +168 -0
- camel/toolkits/screenshot_toolkit.py +213 -0
- camel/toolkits/search_toolkit.py +437 -142
- camel/toolkits/slack_toolkit.py +104 -50
- camel/toolkits/sympy_toolkit.py +1 -1
- camel/toolkits/task_planning_toolkit.py +3 -3
- camel/toolkits/terminal_toolkit/__init__.py +18 -0
- camel/toolkits/terminal_toolkit/terminal_toolkit.py +957 -0
- camel/toolkits/terminal_toolkit/utils.py +532 -0
- camel/toolkits/thinking_toolkit.py +1 -1
- camel/toolkits/vertex_ai_veo_toolkit.py +590 -0
- camel/toolkits/video_analysis_toolkit.py +106 -26
- camel/toolkits/video_download_toolkit.py +17 -14
- camel/toolkits/web_deploy_toolkit.py +1219 -0
- camel/toolkits/wechat_official_toolkit.py +483 -0
- camel/toolkits/zapier_toolkit.py +5 -1
- camel/types/__init__.py +2 -2
- camel/types/agents/tool_calling_record.py +4 -1
- camel/types/enums.py +316 -40
- camel/types/openai_types.py +2 -2
- camel/types/unified_model_type.py +31 -4
- camel/utils/commons.py +36 -5
- camel/utils/constants.py +3 -0
- camel/utils/context_utils.py +1003 -0
- camel/utils/mcp.py +138 -4
- camel/utils/mcp_client.py +45 -1
- camel/utils/message_summarizer.py +148 -0
- camel/utils/token_counting.py +43 -20
- camel/utils/tool_result.py +44 -0
- {camel_ai-0.2.67.dist-info → camel_ai-0.2.80a2.dist-info}/METADATA +296 -85
- {camel_ai-0.2.67.dist-info → camel_ai-0.2.80a2.dist-info}/RECORD +219 -146
- camel/loaders/pandas_reader.py +0 -368
- camel/toolkits/dalle_toolkit.py +0 -175
- camel/toolkits/file_write_toolkit.py +0 -444
- camel/toolkits/openai_agent_toolkit.py +0 -135
- camel/toolkits/terminal_toolkit.py +0 -1037
- {camel_ai-0.2.67.dist-info → camel_ai-0.2.80a2.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.67.dist-info → camel_ai-0.2.80a2.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.80a2
|
|
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
|
|
@@ -9,17 +9,19 @@ Author: CAMEL-AI.org
|
|
|
9
9
|
License-Expression: Apache-2.0
|
|
10
10
|
License-File: LICENSE
|
|
11
11
|
Keywords: ai-societies,artificial-intelligence,communicative-ai,cooperative-ai,deep-learning,large-language-models,multi-agent-systems,natural-language-processing
|
|
12
|
-
Requires-Python: <3.
|
|
12
|
+
Requires-Python: <3.15,>=3.10
|
|
13
|
+
Requires-Dist: astor>=0.8.1
|
|
13
14
|
Requires-Dist: colorama<0.5,>=0.4.6
|
|
14
|
-
Requires-Dist: docstring-parser<0.
|
|
15
|
+
Requires-Dist: docstring-parser<0.18,>=0.17.0
|
|
15
16
|
Requires-Dist: httpx<1.0.0dev,>=0.28.0
|
|
16
17
|
Requires-Dist: jsonschema<5,>=4
|
|
17
18
|
Requires-Dist: mcp>=1.3.0
|
|
18
|
-
Requires-Dist: openai<2,>=1.
|
|
19
|
+
Requires-Dist: openai<2,>=1.86.0
|
|
19
20
|
Requires-Dist: pillow<11.0.0,>=10.1.0
|
|
20
21
|
Requires-Dist: psutil<6,>=5.9.8
|
|
21
22
|
Requires-Dist: pydantic>=2.10.6
|
|
22
23
|
Requires-Dist: tiktoken<0.8,>=0.7.0
|
|
24
|
+
Requires-Dist: websockets<15.1,>=13.0
|
|
23
25
|
Provides-Extra: all
|
|
24
26
|
Requires-Dist: aci-sdk>=1.0.0b1; extra == 'all'
|
|
25
27
|
Requires-Dist: agentops<0.4,>=0.3.21; extra == 'all'
|
|
@@ -31,9 +33,10 @@ Requires-Dist: arxiv<3,>=2.1.3; extra == 'all'
|
|
|
31
33
|
Requires-Dist: azure-storage-blob<13,>=12.21.0; extra == 'all'
|
|
32
34
|
Requires-Dist: beautifulsoup4<5,>=4; extra == 'all'
|
|
33
35
|
Requires-Dist: botocore<2,>=1.35.3; extra == 'all'
|
|
34
|
-
Requires-Dist:
|
|
36
|
+
Requires-Dist: chromadb<1.0.0,>=0.6.0; extra == 'all'
|
|
37
|
+
Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'all'
|
|
35
38
|
Requires-Dist: cohere<6,>=5.11.0; extra == 'all'
|
|
36
|
-
Requires-Dist: crawl4ai>=0.
|
|
39
|
+
Requires-Dist: crawl4ai>=0.4.0; extra == 'all'
|
|
37
40
|
Requires-Dist: dappier<0.4,>=0.3.3; extra == 'all'
|
|
38
41
|
Requires-Dist: datacommons-pandas<0.0.4,>=0.0.3; extra == 'all'
|
|
39
42
|
Requires-Dist: datacommons<2,>=1.4.3; extra == 'all'
|
|
@@ -51,17 +54,19 @@ Requires-Dist: faiss-cpu<2,>=1.7.2; extra == 'all'
|
|
|
51
54
|
Requires-Dist: fastapi>=0.115.11; extra == 'all'
|
|
52
55
|
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'all'
|
|
53
56
|
Requires-Dist: firecrawl-py<2,>=1.0.0; extra == 'all'
|
|
54
|
-
Requires-Dist: fish-audio-sdk
|
|
57
|
+
Requires-Dist: fish-audio-sdk>=1.0.0; extra == 'all'
|
|
55
58
|
Requires-Dist: flask>=2.0; extra == 'all'
|
|
56
|
-
Requires-Dist: fpdf>=1.7.2; extra == 'all'
|
|
57
59
|
Requires-Dist: google-api-python-client==2.166.0; extra == 'all'
|
|
58
60
|
Requires-Dist: google-auth-httplib2==0.2.0; extra == 'all'
|
|
59
61
|
Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'all'
|
|
62
|
+
Requires-Dist: google-auth<3.0.0,>=2.0.0; extra == 'all'
|
|
63
|
+
Requires-Dist: google-cloud-aiplatform>=1.111.0; extra == 'all'
|
|
60
64
|
Requires-Dist: google-cloud-storage<3,>=2.18.0; extra == 'all'
|
|
61
65
|
Requires-Dist: google-genai>=1.13.0; extra == 'all'
|
|
62
66
|
Requires-Dist: googlemaps<5,>=4.10.0; extra == 'all'
|
|
63
67
|
Requires-Dist: gradio<4,>=3; extra == 'all'
|
|
64
68
|
Requires-Dist: html2text>=2024.2.26; extra == 'all'
|
|
69
|
+
Requires-Dist: httplib2>=0.31.0; extra == 'all'
|
|
65
70
|
Requires-Dist: ibm-watsonx-ai>=1.3.11; extra == 'all'
|
|
66
71
|
Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'all'
|
|
67
72
|
Requires-Dist: ipykernel<7,>=6.0.0; extra == 'all'
|
|
@@ -69,46 +74,53 @@ Requires-Dist: jupyter-client<9,>=8.6.2; extra == 'all'
|
|
|
69
74
|
Requires-Dist: langfuse>=2.60.5; extra == 'all'
|
|
70
75
|
Requires-Dist: linkup-sdk<0.3,>=0.2.1; extra == 'all'
|
|
71
76
|
Requires-Dist: litellm<2,>=1.38.1; extra == 'all'
|
|
72
|
-
Requires-Dist: markitdown
|
|
77
|
+
Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'all'
|
|
73
78
|
Requires-Dist: math-verify<0.8,>=0.7.0; extra == 'all'
|
|
74
79
|
Requires-Dist: mcp>=1.3.0; extra == 'all'
|
|
75
80
|
Requires-Dist: mem0ai>=0.1.67; extra == 'all'
|
|
81
|
+
Requires-Dist: microsandbox>=0.1.8; extra == 'all'
|
|
76
82
|
Requires-Dist: mistralai<2,>=1.1.0; extra == 'all'
|
|
77
83
|
Requires-Dist: mock<6,>=5; extra == 'all'
|
|
78
84
|
Requires-Dist: mypy<2,>=1.5.1; extra == 'all'
|
|
79
85
|
Requires-Dist: nebula3-python==3.8.2; extra == 'all'
|
|
80
86
|
Requires-Dist: neo4j<6,>=5.18.0; extra == 'all'
|
|
81
87
|
Requires-Dist: networkx<4,>=3.4.2; extra == 'all'
|
|
82
|
-
Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'all'
|
|
83
88
|
Requires-Dist: notion-client<3,>=2.2.1; extra == 'all'
|
|
84
89
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'all'
|
|
90
|
+
Requires-Dist: onnxruntime<=1.19.2; extra == 'all'
|
|
85
91
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'all'
|
|
86
92
|
Requires-Dist: openpyxl>=3.1.5; extra == 'all'
|
|
87
|
-
Requires-Dist: pandas
|
|
88
|
-
Requires-Dist:
|
|
93
|
+
Requires-Dist: pandas>=2; extra == 'all'
|
|
94
|
+
Requires-Dist: pgvector<0.3,>=0.2.4; extra == 'all'
|
|
89
95
|
Requires-Dist: playwright>=1.50.0; extra == 'all'
|
|
90
96
|
Requires-Dist: prance<24,>=23.6.21.0; extra == 'all'
|
|
91
97
|
Requires-Dist: praw<8,>=7.7.1; extra == 'all'
|
|
92
98
|
Requires-Dist: pre-commit<4,>=3; extra == 'all'
|
|
99
|
+
Requires-Dist: protobuf>=6.0.0; extra == 'all'
|
|
100
|
+
Requires-Dist: psycopg[binary]<4,>=3.1.18; extra == 'all'
|
|
93
101
|
Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'all'
|
|
94
102
|
Requires-Dist: pydub<0.26,>=0.25.1; extra == 'all'
|
|
95
103
|
Requires-Dist: pygithub<3,>=2.6.0; extra == 'all'
|
|
96
104
|
Requires-Dist: pylatex>=1.4.2; extra == 'all'
|
|
97
105
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'all'
|
|
98
106
|
Requires-Dist: pymupdf<2,>=1.22.5; extra == 'all'
|
|
99
|
-
Requires-Dist: pyobvector>=0.1.18; extra == 'all'
|
|
107
|
+
Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'all'
|
|
100
108
|
Requires-Dist: pyowm<4,>=3.3.0; extra == 'all'
|
|
101
109
|
Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'all'
|
|
110
|
+
Requires-Dist: pytesseract>=0.3.13; extra == 'all'
|
|
102
111
|
Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'all'
|
|
103
112
|
Requires-Dist: pytest-cov<5,>=4; extra == 'all'
|
|
104
113
|
Requires-Dist: pytest<8,>=7; extra == 'all'
|
|
105
114
|
Requires-Dist: python-pptx>=1.0.2; extra == 'all'
|
|
106
|
-
Requires-Dist: pytidb
|
|
115
|
+
Requires-Dist: pytidb>=0.0.13; extra == 'all'
|
|
107
116
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'all'
|
|
108
117
|
Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'all'
|
|
109
118
|
Requires-Dist: redis<6,>=5.0.6; extra == 'all'
|
|
110
119
|
Requires-Dist: reka-api<4,>=3.0.8; extra == 'all'
|
|
120
|
+
Requires-Dist: reportlab>=4.4.2; extra == 'all'
|
|
111
121
|
Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'all'
|
|
122
|
+
Requires-Dist: resend<3,>=2.0.0; extra == 'all'
|
|
123
|
+
Requires-Dist: rlcard<1.3.0,>=1.0.0; extra == 'all'
|
|
112
124
|
Requires-Dist: rouge<2,>=1.0.1; extra == 'all'
|
|
113
125
|
Requires-Dist: scenedetect>=0.6.5.2; extra == 'all'
|
|
114
126
|
Requires-Dist: scholarly[tor]==1.7.11; extra == 'all'
|
|
@@ -118,6 +130,7 @@ Requires-Dist: slack-bolt<2,>=1.20.1; extra == 'all'
|
|
|
118
130
|
Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'all'
|
|
119
131
|
Requires-Dist: soundfile<0.14,>=0.13; extra == 'all'
|
|
120
132
|
Requires-Dist: stripe<12,>=11.3.0; extra == 'all'
|
|
133
|
+
Requires-Dist: surrealdb>=1.0.6; extra == 'all'
|
|
121
134
|
Requires-Dist: sympy<2,>=1.13.3; extra == 'all'
|
|
122
135
|
Requires-Dist: tabulate>=0.9.0; extra == 'all'
|
|
123
136
|
Requires-Dist: tavily-python<0.6,>=0.5.0; extra == 'all'
|
|
@@ -132,8 +145,9 @@ Requires-Dist: types-pyyaml<7,>=6.0.12; extra == 'all'
|
|
|
132
145
|
Requires-Dist: types-requests<3,>=2.31.0; extra == 'all'
|
|
133
146
|
Requires-Dist: types-setuptools<70,>=69.2.0; extra == 'all'
|
|
134
147
|
Requires-Dist: types-tqdm<5,>=4.66.0; extra == 'all'
|
|
135
|
-
Requires-Dist: unstructured==0.16.20; extra == 'all'
|
|
148
|
+
Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'all'
|
|
136
149
|
Requires-Dist: weaviate-client>=4.15.0; extra == 'all'
|
|
150
|
+
Requires-Dist: websockets<15.1,>=13.0; extra == 'all'
|
|
137
151
|
Requires-Dist: wikipedia<2,>=1; extra == 'all'
|
|
138
152
|
Requires-Dist: wolframalpha<6,>=5.0.0; extra == 'all'
|
|
139
153
|
Requires-Dist: xls2xlsx>=0.2.0; extra == 'all'
|
|
@@ -144,6 +158,7 @@ Requires-Dist: notion-client<3,>=2.2.1; extra == 'communication-tools'
|
|
|
144
158
|
Requires-Dist: praw<8,>=7.7.1; extra == 'communication-tools'
|
|
145
159
|
Requires-Dist: pygithub<3,>=2.6.0; extra == 'communication-tools'
|
|
146
160
|
Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'communication-tools'
|
|
161
|
+
Requires-Dist: resend<3,>=2.0.0; extra == 'communication-tools'
|
|
147
162
|
Requires-Dist: slack-bolt<2,>=1.20.1; extra == 'communication-tools'
|
|
148
163
|
Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'communication-tools'
|
|
149
164
|
Provides-Extra: data-tools
|
|
@@ -153,7 +168,7 @@ Requires-Dist: datacommons<2,>=1.4.3; extra == 'data-tools'
|
|
|
153
168
|
Requires-Dist: math-verify<0.8,>=0.7.0; extra == 'data-tools'
|
|
154
169
|
Requires-Dist: networkx<4,>=3.4.2; extra == 'data-tools'
|
|
155
170
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'data-tools'
|
|
156
|
-
Requires-Dist: pandas
|
|
171
|
+
Requires-Dist: pandas>=2; extra == 'data-tools'
|
|
157
172
|
Requires-Dist: rouge<2,>=1.0.1; extra == 'data-tools'
|
|
158
173
|
Requires-Dist: stripe<12,>=11.3.0; extra == 'data-tools'
|
|
159
174
|
Requires-Dist: textblob<0.18,>=0.17.1; extra == 'data-tools'
|
|
@@ -174,7 +189,7 @@ Requires-Dist: types-pyyaml<7,>=6.0.12; extra == 'dev'
|
|
|
174
189
|
Requires-Dist: types-requests<3,>=2.31.0; extra == 'dev'
|
|
175
190
|
Requires-Dist: types-setuptools<70,>=69.2.0; extra == 'dev'
|
|
176
191
|
Requires-Dist: types-tqdm<5,>=4.66.0; extra == 'dev'
|
|
177
|
-
Requires-Dist: uv
|
|
192
|
+
Requires-Dist: uv<0.8,>=0.7.0; extra == 'dev'
|
|
178
193
|
Provides-Extra: dev-tools
|
|
179
194
|
Requires-Dist: aci-sdk>=1.0.0b1; extra == 'dev-tools'
|
|
180
195
|
Requires-Dist: agentops<0.4,>=0.3.21; extra == 'dev-tools'
|
|
@@ -185,6 +200,7 @@ Requires-Dist: ipykernel<7,>=6.0.0; extra == 'dev-tools'
|
|
|
185
200
|
Requires-Dist: jupyter-client<9,>=8.6.2; extra == 'dev-tools'
|
|
186
201
|
Requires-Dist: langfuse>=2.60.5; extra == 'dev-tools'
|
|
187
202
|
Requires-Dist: mcp>=1.3.0; extra == 'dev-tools'
|
|
203
|
+
Requires-Dist: microsandbox>=0.1.8; extra == 'dev-tools'
|
|
188
204
|
Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'dev-tools'
|
|
189
205
|
Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'dev-tools'
|
|
190
206
|
Requires-Dist: typer>=0.15.2; extra == 'dev-tools'
|
|
@@ -197,23 +213,56 @@ Requires-Dist: sphinx<8,>=7; extra == 'docs'
|
|
|
197
213
|
Requires-Dist: sphinxext-rediraffe<0.3,>=0.2.7; extra == 'docs'
|
|
198
214
|
Provides-Extra: document-tools
|
|
199
215
|
Requires-Dist: beautifulsoup4<5,>=4; extra == 'document-tools'
|
|
200
|
-
Requires-Dist: chunkr-ai
|
|
216
|
+
Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'document-tools'
|
|
201
217
|
Requires-Dist: crawl4ai>=0.3.745; extra == 'document-tools'
|
|
202
218
|
Requires-Dist: docx2txt<0.9,>=0.8; extra == 'document-tools'
|
|
203
219
|
Requires-Dist: docx>=0.2.4; extra == 'document-tools'
|
|
204
|
-
Requires-Dist:
|
|
205
|
-
Requires-Dist: markitdown==0.1.1; extra == 'document-tools'
|
|
220
|
+
Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'document-tools'
|
|
206
221
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'document-tools'
|
|
222
|
+
Requires-Dist: onnxruntime<=1.19.2; extra == 'document-tools'
|
|
207
223
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'document-tools'
|
|
208
224
|
Requires-Dist: openpyxl>=3.1.5; extra == 'document-tools'
|
|
209
|
-
Requires-Dist: pandasai<3,>=2.3.0; extra == 'document-tools'
|
|
210
225
|
Requires-Dist: prance<24,>=23.6.21.0; extra == 'document-tools'
|
|
211
226
|
Requires-Dist: pylatex>=1.4.2; extra == 'document-tools'
|
|
212
227
|
Requires-Dist: pymupdf<2,>=1.22.5; extra == 'document-tools'
|
|
213
228
|
Requires-Dist: python-pptx>=1.0.2; extra == 'document-tools'
|
|
229
|
+
Requires-Dist: reportlab>=4.4.2; extra == 'document-tools'
|
|
214
230
|
Requires-Dist: tabulate>=0.9.0; extra == 'document-tools'
|
|
215
|
-
Requires-Dist: unstructured==0.16.20; extra == 'document-tools'
|
|
231
|
+
Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'document-tools'
|
|
216
232
|
Requires-Dist: xls2xlsx>=0.2.0; extra == 'document-tools'
|
|
233
|
+
Provides-Extra: eigent
|
|
234
|
+
Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'eigent'
|
|
235
|
+
Requires-Dist: datasets<4,>=3; extra == 'eigent'
|
|
236
|
+
Requires-Dist: docx>=0.2.4; extra == 'eigent'
|
|
237
|
+
Requires-Dist: exa-py<2,>=1.10.0; extra == 'eigent'
|
|
238
|
+
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'eigent'
|
|
239
|
+
Requires-Dist: google-api-python-client==2.166.0; extra == 'eigent'
|
|
240
|
+
Requires-Dist: google-auth-httplib2==0.2.0; extra == 'eigent'
|
|
241
|
+
Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'eigent'
|
|
242
|
+
Requires-Dist: httplib2>=0.31.0; extra == 'eigent'
|
|
243
|
+
Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'eigent'
|
|
244
|
+
Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'eigent'
|
|
245
|
+
Requires-Dist: markitdown[all]>=0.1.1; (python_version < '3.13') and extra == 'eigent'
|
|
246
|
+
Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'eigent'
|
|
247
|
+
Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'eigent'
|
|
248
|
+
Requires-Dist: numpy<=2.2,>=1.2; extra == 'eigent'
|
|
249
|
+
Requires-Dist: onnxruntime<=1.19.2; extra == 'eigent'
|
|
250
|
+
Requires-Dist: openpyxl>=3.1.5; extra == 'eigent'
|
|
251
|
+
Requires-Dist: pandas>=2; extra == 'eigent'
|
|
252
|
+
Requires-Dist: pydub<0.26,>=0.25.1; extra == 'eigent'
|
|
253
|
+
Requires-Dist: pylatex>=1.4.2; extra == 'eigent'
|
|
254
|
+
Requires-Dist: pytesseract>=0.3.13; extra == 'eigent'
|
|
255
|
+
Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'eigent'
|
|
256
|
+
Requires-Dist: python-pptx>=1.0.2; extra == 'eigent'
|
|
257
|
+
Requires-Dist: reportlab>=4.4.2; extra == 'eigent'
|
|
258
|
+
Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'eigent'
|
|
259
|
+
Requires-Dist: scenedetect>=0.6.5.2; extra == 'eigent'
|
|
260
|
+
Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'eigent'
|
|
261
|
+
Requires-Dist: tabulate>=0.9.0; extra == 'eigent'
|
|
262
|
+
Requires-Dist: websockets<15.1,>=13.0; extra == 'eigent'
|
|
263
|
+
Requires-Dist: wikipedia<2,>=1; extra == 'eigent'
|
|
264
|
+
Requires-Dist: xls2xlsx>=0.2.0; extra == 'eigent'
|
|
265
|
+
Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'eigent'
|
|
217
266
|
Provides-Extra: huggingface
|
|
218
267
|
Requires-Dist: datasets<4,>=3; extra == 'huggingface'
|
|
219
268
|
Requires-Dist: diffusers<0.26,>=0.25.0; extra == 'huggingface'
|
|
@@ -225,12 +274,13 @@ Provides-Extra: media-tools
|
|
|
225
274
|
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'media-tools'
|
|
226
275
|
Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'media-tools'
|
|
227
276
|
Requires-Dist: pydub<0.26,>=0.25.1; extra == 'media-tools'
|
|
277
|
+
Requires-Dist: pytesseract>=0.3.13; extra == 'media-tools'
|
|
228
278
|
Requires-Dist: scenedetect>=0.6.5.2; extra == 'media-tools'
|
|
229
279
|
Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'media-tools'
|
|
230
280
|
Provides-Extra: model-platforms
|
|
231
281
|
Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'model-platforms'
|
|
232
282
|
Requires-Dist: cohere<6,>=5.11.0; extra == 'model-platforms'
|
|
233
|
-
Requires-Dist: fish-audio-sdk
|
|
283
|
+
Requires-Dist: fish-audio-sdk>=1.0.0; extra == 'model-platforms'
|
|
234
284
|
Requires-Dist: ibm-watsonx-ai>=1.3.11; extra == 'model-platforms'
|
|
235
285
|
Requires-Dist: litellm<2,>=1.38.1; extra == 'model-platforms'
|
|
236
286
|
Requires-Dist: mistralai<2,>=1.1.0; extra == 'model-platforms'
|
|
@@ -239,34 +289,36 @@ Provides-Extra: owl
|
|
|
239
289
|
Requires-Dist: aci-sdk>=1.0.0b1; extra == 'owl'
|
|
240
290
|
Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'owl'
|
|
241
291
|
Requires-Dist: beautifulsoup4<5,>=4; extra == 'owl'
|
|
292
|
+
Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'owl'
|
|
242
293
|
Requires-Dist: chunkr-ai>=0.0.41; extra == 'owl'
|
|
243
|
-
Requires-Dist: chunkr-ai>=0.0.50; extra == 'owl'
|
|
244
294
|
Requires-Dist: crawl4ai>=0.3.745; extra == 'owl'
|
|
245
295
|
Requires-Dist: datasets<4,>=3; extra == 'owl'
|
|
246
296
|
Requires-Dist: docx2txt<0.9,>=0.8; extra == 'owl'
|
|
247
297
|
Requires-Dist: docx>=0.2.4; extra == 'owl'
|
|
248
298
|
Requires-Dist: duckduckgo-search<7,>=6.3.5; extra == 'owl'
|
|
249
299
|
Requires-Dist: e2b-code-interpreter<2,>=1.0.3; extra == 'owl'
|
|
300
|
+
Requires-Dist: exa-py<2,>=1.10.0; extra == 'owl'
|
|
250
301
|
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'owl'
|
|
251
|
-
Requires-Dist: fpdf>=1.7.2; extra == 'owl'
|
|
252
302
|
Requires-Dist: html2text>=2024.2.26; extra == 'owl'
|
|
253
303
|
Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'owl'
|
|
304
|
+
Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'owl'
|
|
254
305
|
Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'owl'
|
|
255
306
|
Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'owl'
|
|
256
|
-
Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'owl'
|
|
257
307
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'owl'
|
|
308
|
+
Requires-Dist: onnxruntime<=1.19.2; extra == 'owl'
|
|
258
309
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'owl'
|
|
259
310
|
Requires-Dist: openpyxl>=3.1.5; extra == 'owl'
|
|
260
|
-
Requires-Dist: pandas
|
|
261
|
-
Requires-Dist: pandasai<3,>=2.3.0; extra == 'owl'
|
|
311
|
+
Requires-Dist: pandas>=2; extra == 'owl'
|
|
262
312
|
Requires-Dist: playwright>=1.50.0; extra == 'owl'
|
|
263
313
|
Requires-Dist: prance<24,>=23.6.21.0; extra == 'owl'
|
|
264
314
|
Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'owl'
|
|
265
315
|
Requires-Dist: pydub<0.26,>=0.25.1; extra == 'owl'
|
|
266
316
|
Requires-Dist: pylatex>=1.4.2; extra == 'owl'
|
|
267
317
|
Requires-Dist: pymupdf<2,>=1.22.5; extra == 'owl'
|
|
318
|
+
Requires-Dist: pytesseract>=0.3.13; extra == 'owl'
|
|
268
319
|
Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'owl'
|
|
269
320
|
Requires-Dist: python-pptx>=1.0.2; extra == 'owl'
|
|
321
|
+
Requires-Dist: reportlab>=4.4.2; extra == 'owl'
|
|
270
322
|
Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'owl'
|
|
271
323
|
Requires-Dist: rouge<2,>=1.0.1; extra == 'owl'
|
|
272
324
|
Requires-Dist: scenedetect>=0.6.5.2; extra == 'owl'
|
|
@@ -278,12 +330,14 @@ Requires-Dist: transformers<5,>=4; extra == 'owl'
|
|
|
278
330
|
Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'owl'
|
|
279
331
|
Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'owl'
|
|
280
332
|
Requires-Dist: typer>=0.15.2; extra == 'owl'
|
|
281
|
-
Requires-Dist: unstructured==0.16.20; extra == 'owl'
|
|
333
|
+
Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'owl'
|
|
334
|
+
Requires-Dist: websockets<15.1,>=13.0; extra == 'owl'
|
|
282
335
|
Requires-Dist: wikipedia<2,>=1; extra == 'owl'
|
|
283
336
|
Requires-Dist: xls2xlsx>=0.2.0; extra == 'owl'
|
|
284
337
|
Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'owl'
|
|
285
338
|
Provides-Extra: rag
|
|
286
|
-
Requires-Dist:
|
|
339
|
+
Requires-Dist: chromadb<1.0.0,>=0.6.0; extra == 'rag'
|
|
340
|
+
Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'rag'
|
|
287
341
|
Requires-Dist: cohere<6,>=5.11.0; extra == 'rag'
|
|
288
342
|
Requires-Dist: crawl4ai>=0.3.745; extra == 'rag'
|
|
289
343
|
Requires-Dist: faiss-cpu<2,>=1.7.2; extra == 'rag'
|
|
@@ -291,13 +345,13 @@ Requires-Dist: google-genai>=1.13.0; extra == 'rag'
|
|
|
291
345
|
Requires-Dist: nebula3-python==3.8.2; extra == 'rag'
|
|
292
346
|
Requires-Dist: neo4j<6,>=5.18.0; extra == 'rag'
|
|
293
347
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'rag'
|
|
294
|
-
Requires-Dist:
|
|
348
|
+
Requires-Dist: protobuf>=6.0.0; extra == 'rag'
|
|
295
349
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'rag'
|
|
296
|
-
Requires-Dist: pyobvector>=0.1.18; extra == 'rag'
|
|
297
|
-
Requires-Dist: pytidb
|
|
350
|
+
Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'rag'
|
|
351
|
+
Requires-Dist: pytidb>=0.0.13; extra == 'rag'
|
|
298
352
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'rag'
|
|
299
353
|
Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'rag'
|
|
300
|
-
Requires-Dist: unstructured==0.16.20; extra == 'rag'
|
|
354
|
+
Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'rag'
|
|
301
355
|
Requires-Dist: weaviate-client>=4.15.0; extra == 'rag'
|
|
302
356
|
Provides-Extra: research-tools
|
|
303
357
|
Requires-Dist: arxiv2text<0.2,>=0.1.14; extra == 'research-tools'
|
|
@@ -306,21 +360,22 @@ Requires-Dist: scholarly[tor]==1.7.11; extra == 'research-tools'
|
|
|
306
360
|
Provides-Extra: storage
|
|
307
361
|
Requires-Dist: azure-storage-blob<13,>=12.21.0; extra == 'storage'
|
|
308
362
|
Requires-Dist: botocore<2,>=1.35.3; extra == 'storage'
|
|
363
|
+
Requires-Dist: chromadb<1.0.0,>=0.6.0; extra == 'storage'
|
|
309
364
|
Requires-Dist: faiss-cpu<2,>=1.7.2; extra == 'storage'
|
|
310
365
|
Requires-Dist: google-cloud-storage<3,>=2.18.0; extra == 'storage'
|
|
311
366
|
Requires-Dist: mem0ai>=0.1.73; extra == 'storage'
|
|
312
367
|
Requires-Dist: nebula3-python==3.8.2; extra == 'storage'
|
|
313
368
|
Requires-Dist: neo4j<6,>=5.18.0; extra == 'storage'
|
|
369
|
+
Requires-Dist: pgvector<0.3,>=0.2.4; extra == 'storage'
|
|
370
|
+
Requires-Dist: protobuf>=6.0.0; extra == 'storage'
|
|
371
|
+
Requires-Dist: psycopg[binary]<4,>=3.1.18; extra == 'storage'
|
|
314
372
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'storage'
|
|
315
|
-
Requires-Dist: pyobvector>=0.1.18; extra == 'storage'
|
|
316
|
-
Requires-Dist: pytidb
|
|
373
|
+
Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'storage'
|
|
374
|
+
Requires-Dist: pytidb>=0.0.13; extra == 'storage'
|
|
317
375
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'storage'
|
|
318
376
|
Requires-Dist: redis<6,>=5.0.6; extra == 'storage'
|
|
377
|
+
Requires-Dist: surrealdb>=1.0.6; extra == 'storage'
|
|
319
378
|
Requires-Dist: weaviate-client>=4.15.0; extra == 'storage'
|
|
320
|
-
Provides-Extra: test
|
|
321
|
-
Requires-Dist: mock<6,>=5; extra == 'test'
|
|
322
|
-
Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'test'
|
|
323
|
-
Requires-Dist: pytest<8,>=7; extra == 'test'
|
|
324
379
|
Provides-Extra: web-tools
|
|
325
380
|
Requires-Dist: apify-client<2,>=1.8.1; extra == 'web-tools'
|
|
326
381
|
Requires-Dist: beautifulsoup4<5,>=4; extra == 'web-tools'
|
|
@@ -332,16 +387,17 @@ Requires-Dist: firecrawl-py<2,>=1.0.0; extra == 'web-tools'
|
|
|
332
387
|
Requires-Dist: google-api-python-client==2.166.0; extra == 'web-tools'
|
|
333
388
|
Requires-Dist: google-auth-httplib2==0.2.0; extra == 'web-tools'
|
|
334
389
|
Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'web-tools'
|
|
390
|
+
Requires-Dist: google-auth<3.0.0,>=2.0.0; extra == 'web-tools'
|
|
335
391
|
Requires-Dist: googlemaps<5,>=4.10.0; extra == 'web-tools'
|
|
336
392
|
Requires-Dist: html2text>=2024.2.26; extra == 'web-tools'
|
|
337
393
|
Requires-Dist: linkup-sdk<0.3,>=0.2.1; extra == 'web-tools'
|
|
338
|
-
Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'web-tools'
|
|
339
394
|
Requires-Dist: playwright>=1.50.0; extra == 'web-tools'
|
|
340
395
|
Requires-Dist: pyowm<4,>=3.3.0; extra == 'web-tools'
|
|
341
396
|
Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'web-tools'
|
|
342
397
|
Requires-Dist: scrapegraph-py<2,>=1.12.0; extra == 'web-tools'
|
|
343
398
|
Requires-Dist: sympy<2,>=1.13.3; extra == 'web-tools'
|
|
344
399
|
Requires-Dist: tavily-python<0.6,>=0.5.0; extra == 'web-tools'
|
|
400
|
+
Requires-Dist: websockets<15.1,>=13.0; extra == 'web-tools'
|
|
345
401
|
Requires-Dist: wikipedia<2,>=1; extra == 'web-tools'
|
|
346
402
|
Requires-Dist: wolframalpha<6,>=5.0.0; extra == 'web-tools'
|
|
347
403
|
Description-Content-Type: text/markdown
|
|
@@ -365,9 +421,14 @@ Description-Content-Type: text/markdown
|
|
|
365
421
|
[![Star][star-image]][star-url]
|
|
366
422
|
[![Package License][package-license-image]][package-license-url]
|
|
367
423
|
[![PyPI Download][package-download-image]][package-download-url]
|
|
424
|
+
[![][join-us-image]][join-us]
|
|
368
425
|
|
|
369
426
|
<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>
|
|
370
427
|
|
|
428
|
+
[English](README.md) |
|
|
429
|
+
[简体中文](README.zh.md) |
|
|
430
|
+
[日本語](README.ja.md)
|
|
431
|
+
|
|
371
432
|
</div>
|
|
372
433
|
|
|
373
434
|
|
|
@@ -399,12 +460,54 @@ Join us ([*Discord*](https://discord.camel-ai.org/) or [*WeChat*](https://ghli.o
|
|
|
399
460
|
</div>
|
|
400
461
|
|
|
401
462
|
<div align="center">
|
|
402
|
-
<img src="docs/images/
|
|
463
|
+
<img src="docs/images/stars.gif" alt="Star">
|
|
403
464
|
</a>
|
|
404
465
|
</div>
|
|
405
466
|
|
|
406
467
|
<br>
|
|
407
468
|
|
|
469
|
+
[![][image-join-us]][join-us]
|
|
470
|
+
|
|
471
|
+
<details>
|
|
472
|
+
<summary><kbd>Table of contents</kbd></summary>
|
|
473
|
+
|
|
474
|
+
<br/>
|
|
475
|
+
|
|
476
|
+
- [CAMEL Framework Design Principles](#camel-framework-design-principles)
|
|
477
|
+
- [Why Use CAMEL for Your Research?](#why-use-camel-for-your-research)
|
|
478
|
+
- [What Can You Build With CAMEL?](#what-can-you-build-with-camel)
|
|
479
|
+
- [Data Generation](#1-data-generation)
|
|
480
|
+
- [Task Automation](#2-task-automation)
|
|
481
|
+
- [World Simulation](#3-world-simulation)
|
|
482
|
+
- [Quick Start](#quick-start)
|
|
483
|
+
- [Starting with ChatAgent](#starting-with-chatagent)
|
|
484
|
+
- [Seeking Help](#seeking-help)
|
|
485
|
+
- [Tech Stack](#tech-stack)
|
|
486
|
+
- [Research](#research)
|
|
487
|
+
- [Synthetic Datasets](#synthetic-datasets)
|
|
488
|
+
- [Cookbooks (Usecases)](#cookbooks-usecases)
|
|
489
|
+
- [Basic Concepts](#1-basic-concepts)
|
|
490
|
+
- [Advanced Features](#2-advanced-features)
|
|
491
|
+
- [Model Training & Data Generation](#3-model-training--data-generation)
|
|
492
|
+
- [Multi-Agent Systems & Applications](#4-multi-agent-systems--applications)
|
|
493
|
+
- [Data Processing](#5-data-processing)
|
|
494
|
+
- [Real-World Usecases](#real-world-usecases)
|
|
495
|
+
- [🧱 Built with CAMEL (Real-world Producs & Research)](#-built-with-camel-real-world-producs--research)
|
|
496
|
+
- [Research Projects](#research-projects)
|
|
497
|
+
- [Product Projects](#product-projects)
|
|
498
|
+
- [🗓️ Events](#️-events)
|
|
499
|
+
- [Contributing to CAMEL](#contributing-to-camel)
|
|
500
|
+
- [Community & Contact](#community--contact)
|
|
501
|
+
- [Citation](#citation)
|
|
502
|
+
- [Acknowledgment](#acknowledgment)
|
|
503
|
+
- [License](#license)
|
|
504
|
+
|
|
505
|
+
####
|
|
506
|
+
|
|
507
|
+
<br/>
|
|
508
|
+
|
|
509
|
+
</details>
|
|
510
|
+
|
|
408
511
|
|
|
409
512
|
## CAMEL Framework Design Principles
|
|
410
513
|
|
|
@@ -514,7 +617,7 @@ We are a community-driven research collective comprising over 100 researchers de
|
|
|
514
617
|
</div>
|
|
515
618
|
|
|
516
619
|
<div align="center">
|
|
517
|
-
<a href="https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag
|
|
620
|
+
<a href="https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag">
|
|
518
621
|
<img src="docs/images/rag_pipeline.png" alt="RAG Pipeline">
|
|
519
622
|
</a>
|
|
520
623
|
</div>
|
|
@@ -554,6 +657,13 @@ This example demonstrates how to create a `ChatAgent` using the CAMEL framework
|
|
|
554
657
|
export OPENAI_API_KEY='your_openai_api_key'
|
|
555
658
|
```
|
|
556
659
|
|
|
660
|
+
Alternatively, use a `.env` file:
|
|
661
|
+
|
|
662
|
+
```bash
|
|
663
|
+
cp .env.example .env
|
|
664
|
+
# then edit .env and add your keys
|
|
665
|
+
```
|
|
666
|
+
|
|
557
667
|
3. **Run the following Python code:**
|
|
558
668
|
|
|
559
669
|
```python
|
|
@@ -593,10 +703,10 @@ We provide a [**
|
|
707
|
+
- **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agents_society)**
|
|
708
|
+
- **[Embodied Agents](https://docs.camel-ai.org/cookbooks/advanced_features/embodied_agents)**
|
|
709
|
+
- **[Critic Agents](https://docs.camel-ai.org/cookbooks/advanced_features/critic_agents_and_tree_search)**
|
|
600
710
|
|
|
601
711
|
### Seeking Help
|
|
602
712
|
|
|
@@ -617,19 +727,19 @@ Core components and utilities to build, operate, and enhance CAMEL-AI agents and
|
|
|
617
727
|
|
|
618
728
|
| Module | Description |
|
|
619
729
|
|:---|:---|
|
|
620
|
-
| **[Agents](https://docs.camel-ai.org/key_modules/agents
|
|
621
|
-
| **[Agent Societies](https://docs.camel-ai.org/key_modules/society
|
|
622
|
-
| **[Data Generation](https://docs.camel-ai.org/key_modules/datagen
|
|
623
|
-
| **[Models](https://docs.camel-ai.org/key_modules/models
|
|
624
|
-
| **[Tools](https://docs.camel-ai.org/key_modules/tools
|
|
625
|
-
| **[Memory](https://docs.camel-ai.org/key_modules/memory
|
|
626
|
-
| **[Storage](https://docs.camel-ai.org/key_modules/storages
|
|
730
|
+
| **[Agents](https://docs.camel-ai.org/key_modules/agents)** | Core agent architectures and behaviors for autonomous operation. |
|
|
731
|
+
| **[Agent Societies](https://docs.camel-ai.org/key_modules/society)** | Components for building and managing multi-agent systems and collaboration. |
|
|
732
|
+
| **[Data Generation](https://docs.camel-ai.org/key_modules/datagen)** | Tools and methods for synthetic data creation and augmentation. |
|
|
733
|
+
| **[Models](https://docs.camel-ai.org/key_modules/models)** | Model architectures and customization options for agent intelligence. |
|
|
734
|
+
| **[Tools](https://docs.camel-ai.org/key_modules/tools)** | Tools integration for specialized agent tasks. |
|
|
735
|
+
| **[Memory](https://docs.camel-ai.org/key_modules/memory)** | Memory storage and retrieval mechanisms for agent state management. |
|
|
736
|
+
| **[Storage](https://docs.camel-ai.org/key_modules/storages)** | Persistent storage solutions for agent data and states. |
|
|
627
737
|
| **[Benchmarks](https://github.com/camel-ai/camel/tree/master/camel/benchmarks)** | Performance evaluation and testing frameworks. |
|
|
628
|
-
| **[Interpreters](https://docs.camel-ai.org/key_modules/interpreters
|
|
629
|
-
| **[Data Loaders](https://docs.camel-ai.org/key_modules/loaders
|
|
630
|
-
| **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers
|
|
738
|
+
| **[Interpreters](https://docs.camel-ai.org/key_modules/interpreters)** | Code and command interpretation capabilities. |
|
|
739
|
+
| **[Data Loaders](https://docs.camel-ai.org/key_modules/loaders)** | Data ingestion and preprocessing tools. |
|
|
740
|
+
| **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers)** | Knowledge retrieval and RAG components. |
|
|
631
741
|
| **[Runtime](https://github.com/camel-ai/camel/tree/master/camel/runtime)** | Execution environment and process management. |
|
|
632
|
-
| **[Human-in-the-Loop](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_human_in_loop_and_tool_approval
|
|
742
|
+
| **[Human-in-the-Loop](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_human_in_loop_and_tool_approval)** | Interactive components for human oversight and intervention. |
|
|
633
743
|
---
|
|
634
744
|
|
|
635
745
|
## Research
|
|
@@ -638,6 +748,18 @@ We believe that studying these agents on a large scale offers valuable insights
|
|
|
638
748
|
|
|
639
749
|
**Explore our research projects:**
|
|
640
750
|
|
|
751
|
+
<div align="center">
|
|
752
|
+
<a href="https://github.com/camel-ai/owl">
|
|
753
|
+
<img src="docs/images/owl.png" alt="OWL">
|
|
754
|
+
</a>
|
|
755
|
+
</div>
|
|
756
|
+
|
|
757
|
+
<div align="center">
|
|
758
|
+
<a href="https://oasis.camel-ai.org/">
|
|
759
|
+
<img src="docs/images/oasis.png" alt="OASIS">
|
|
760
|
+
</a>
|
|
761
|
+
</div>
|
|
762
|
+
|
|
641
763
|
<div align="center">
|
|
642
764
|
<a href="https://crab.camel-ai.org/">
|
|
643
765
|
<img src="docs/images/crab.png" alt="CRAB">
|
|
@@ -645,14 +767,14 @@ We believe that studying these agents on a large scale offers valuable insights
|
|
|
645
767
|
</div>
|
|
646
768
|
|
|
647
769
|
<div align="center">
|
|
648
|
-
<a href="https://
|
|
649
|
-
<img src="docs/images/
|
|
770
|
+
<a href="https://github.com/camel-ai/loong">
|
|
771
|
+
<img src="docs/images/loong.png" alt="Loong">
|
|
650
772
|
</a>
|
|
651
773
|
</div>
|
|
652
774
|
|
|
653
775
|
<div align="center">
|
|
654
|
-
<a href="https://
|
|
655
|
-
<img src="docs/images/
|
|
776
|
+
<a href="https://agent-trust.camel-ai.org/">
|
|
777
|
+
<img src="docs/images/agent_trust.png" alt="Agent Trust">
|
|
656
778
|
</a>
|
|
657
779
|
</div>
|
|
658
780
|
|
|
@@ -678,7 +800,7 @@ We believe that studying these agents on a large scale offers valuable insights
|
|
|
678
800
|
|
|
679
801
|
### 1. Utilize Various LLMs as Backends
|
|
680
802
|
|
|
681
|
-
For more details, please see our [`Models Documentation`](https://docs.camel-ai.org/key_modules/models
|
|
803
|
+
For more details, please see our [`Models Documentation`](https://docs.camel-ai.org/key_modules/models#).
|
|
682
804
|
|
|
683
805
|
> **Data (Hosted on Hugging Face)**
|
|
684
806
|
|
|
@@ -707,46 +829,124 @@ Practical guides and tutorials for implementing specific functionalities in CAME
|
|
|
707
829
|
### 1. Basic Concepts
|
|
708
830
|
| Cookbook | Description |
|
|
709
831
|
|:---|:---|
|
|
710
|
-
| **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agent
|
|
711
|
-
| **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agents_society
|
|
712
|
-
| **[Message Cookbook](https://docs.camel-ai.org/cookbooks/basic_concepts/agents_message
|
|
832
|
+
| **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agent)** | A step-by-step guide to building your first agent. |
|
|
833
|
+
| **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agents_society)** | Learn to build a collaborative society of agents. |
|
|
834
|
+
| **[Message Cookbook](https://docs.camel-ai.org/cookbooks/basic_concepts/agents_message)** | Best practices for message handling in agents. |
|
|
713
835
|
|
|
714
836
|
### 2. Advanced Features
|
|
715
837
|
| Cookbook | Description |
|
|
716
838
|
|:---|:---|
|
|
717
|
-
| **[Tools Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_tools
|
|
718
|
-
| **[Memory Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_memory
|
|
719
|
-
| **[RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag
|
|
720
|
-
| **[Graph RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_graph_rag
|
|
721
|
-
| **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/advanced_features/agents_tracking
|
|
839
|
+
| **[Tools Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_tools)** | Integrating tools for enhanced functionality. |
|
|
840
|
+
| **[Memory Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_memory)** | Implementing memory systems in agents. |
|
|
841
|
+
| **[RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag)** | Recipes for Retrieval-Augmented Generation. |
|
|
842
|
+
| **[Graph RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_graph_rag)** | Leveraging knowledge graphs with RAG. |
|
|
843
|
+
| **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/advanced_features/agents_tracking)** | Tools for tracking and managing agents in operations. |
|
|
722
844
|
|
|
723
845
|
### 3. Model Training & Data Generation
|
|
724
846
|
| Cookbook | Description |
|
|
725
847
|
|:---|:---|
|
|
726
|
-
| **[Data Generation with CAMEL and Finetuning with Unsloth](https://docs.camel-ai.org/cookbooks/data_generation/sft_data_generation_and_unsloth_finetuning_Qwen2_5_7B
|
|
727
|
-
| **[Data Gen with Real Function Calls and Hermes Format](https://docs.camel-ai.org/cookbooks/data_generation/data_gen_with_real_function_calls_and_hermes_format
|
|
728
|
-
| **[CoT Data Generation and Upload Data to Huggingface](https://docs.camel-ai.org/cookbooks/data_generation/distill_math_reasoning_data_from_deepseek_r1
|
|
729
|
-
| **[CoT Data Generation and SFT Qwen with Unsolth](https://docs.camel-ai.org/cookbooks/data_generation/cot_data_gen_sft_qwen_unsolth_upload_huggingface
|
|
848
|
+
| **[Data Generation with CAMEL and Finetuning with Unsloth](https://docs.camel-ai.org/cookbooks/data_generation/sft_data_generation_and_unsloth_finetuning_Qwen2_5_7B)** | Learn how to generate data with CAMEL and fine-tune models effectively with Unsloth. |
|
|
849
|
+
| **[Data Gen with Real Function Calls and Hermes Format](https://docs.camel-ai.org/cookbooks/data_generation/data_gen_with_real_function_calls_and_hermes_format)** | Explore how to generate data with real function calls and the Hermes format. |
|
|
850
|
+
| **[CoT Data Generation and Upload Data to Huggingface](https://docs.camel-ai.org/cookbooks/data_generation/distill_math_reasoning_data_from_deepseek_r1)** | Uncover how to generate CoT data with CAMEL and seamlessly upload it to Huggingface. |
|
|
851
|
+
| **[CoT Data Generation and SFT Qwen with Unsolth](https://docs.camel-ai.org/cookbooks/data_generation/cot_data_gen_sft_qwen_unsolth_upload_huggingface)** | Discover how to generate CoT data using CAMEL and SFT Qwen with Unsolth, and seamlessly upload your data and model to Huggingface. |
|
|
730
852
|
|
|
731
853
|
### 4. Multi-Agent Systems & Applications
|
|
732
854
|
| Cookbook | Description |
|
|
733
855
|
|:---|:---|
|
|
734
|
-
| **[Role-Playing Scraper for Report & Knowledge Graph Generation](https://docs.camel-ai.org/cookbooks/applications/roleplaying_scraper
|
|
735
|
-
| **[Create A Hackathon Judge Committee with Workforce](https://docs.camel-ai.org/cookbooks/multi_agent_society/workforce_judge_committee
|
|
736
|
-
| **[Dynamic Knowledge Graph Role-Playing: Multi-Agent System with dynamic, temporally-aware knowledge graphs](https://docs.camel-ai.org/cookbooks/
|
|
737
|
-
| **[Customer Service Discord Bot with Agentic RAG](https://docs.camel-ai.org/cookbooks/applications/customer_service_Discord_bot_using_SambaNova_with_agentic_RAG
|
|
738
|
-
| **[Customer Service Discord Bot with Local Model](https://docs.camel-ai.org/cookbooks/applications/customer_service_Discord_bot_using_local_model_with_agentic_RAG
|
|
856
|
+
| **[Role-Playing Scraper for Report & Knowledge Graph Generation](https://docs.camel-ai.org/cookbooks/applications/roleplaying_scraper)** | Create role-playing agents for data scraping and reporting. |
|
|
857
|
+
| **[Create A Hackathon Judge Committee with Workforce](https://docs.camel-ai.org/cookbooks/multi_agent_society/workforce_judge_committee)** | Building a team of agents for collaborative judging. |
|
|
858
|
+
| **[Dynamic Knowledge Graph Role-Playing: Multi-Agent System with dynamic, temporally-aware knowledge graphs](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_dkg)** | Builds dynamic, temporally-aware knowledge graphs for financial applications using a multi-agent system. It processes financial reports, news articles, and research papers to help traders analyze data, identify relationships, and uncover market insights. The system also utilizes diverse and optional element node deduplication techniques to ensure data integrity and optimize graph structure for financial decision-making. |
|
|
859
|
+
| **[Customer Service Discord Bot with Agentic RAG](https://docs.camel-ai.org/cookbooks/applications/customer_service_Discord_bot_using_SambaNova_with_agentic_RAG)** | Learn how to build a robust customer service bot for Discord using Agentic RAG. |
|
|
860
|
+
| **[Customer Service Discord Bot with Local Model](https://docs.camel-ai.org/cookbooks/applications/customer_service_Discord_bot_using_local_model_with_agentic_RAG)** | Learn how to build a robust customer service bot for Discord using Agentic RAG which supports local deployment. |
|
|
739
861
|
|
|
740
862
|
### 5. Data Processing
|
|
741
863
|
| Cookbook | Description |
|
|
742
864
|
|:---|:---|
|
|
743
|
-
| **[Video Analysis](https://docs.camel-ai.org/cookbooks/data_processing/video_analysis
|
|
744
|
-
| **[3 Ways to Ingest Data from Websites with Firecrawl](https://docs.camel-ai.org/cookbooks/data_processing/ingest_data_from_websites_with_Firecrawl
|
|
745
|
-
| **[Create AI Agents that work with your PDFs](https://docs.camel-ai.org/cookbooks/data_processing/agent_with_chunkr_for_pdf_parsing
|
|
865
|
+
| **[Video Analysis](https://docs.camel-ai.org/cookbooks/data_processing/video_analysis)** | Techniques for agents in video data analysis. |
|
|
866
|
+
| **[3 Ways to Ingest Data from Websites with Firecrawl](https://docs.camel-ai.org/cookbooks/data_processing/ingest_data_from_websites_with_Firecrawl)** | Explore three methods for extracting and processing data from websites using Firecrawl. |
|
|
867
|
+
| **[Create AI Agents that work with your PDFs](https://docs.camel-ai.org/cookbooks/data_processing/agent_with_chunkr_for_pdf_parsing)** | Learn how to create AI agents that work with your PDFs using Chunkr and Mistral AI. |
|
|
868
|
+
|
|
869
|
+
<br>
|
|
870
|
+
|
|
871
|
+
## Real-World Usecases
|
|
872
|
+
|
|
873
|
+
Real-world usecases demonstrating how CAMEL’s multi-agent framework enables real business value across infrastructure automation, productivity workflows, retrieval-augmented conversations, intelligent document/video analysis, and collaborative research.
|
|
874
|
+
|
|
875
|
+
### 1 Infrastructure Automation
|
|
876
|
+
|
|
877
|
+
| Usecase | Description |
|
|
878
|
+
| :----------------------------------------------------------- | :----------------------------------------------------------- |
|
|
879
|
+
| **[ACI MCP](https://github.com/camel-ai/camel/tree/master/examples/usecases/aci_mcp)** | Real-world usecases demonstrating how CAMEL’s multi-agent framework enables real business value across infrastructure automation, productivity workflows, retrieval-augmented conversations, intelligent document/video analysis, and collaborative research. |
|
|
880
|
+
| **[Cloudflare MCP CAMEL](https://github.com/camel-ai/camel/tree/master/examples/usecases/cloudfare_mcp_camel)** | Intelligent agents manage Cloudflare resources dynamically, enabling scalable and efficient cloud security and performance tuning. |
|
|
746
881
|
|
|
882
|
+
### 2 Productivity & Business Workflows
|
|
883
|
+
|
|
884
|
+
| Usecase | Description |
|
|
885
|
+
| :----------------------------------------------------------- | :----------------------------------------------------------- |
|
|
886
|
+
| **[Airbnb MCP](https://github.com/camel-ai/camel/tree/master/examples/usecases/airbnb_mcp)** | Coordinate agents to optimize and manage Airbnb listings and host operations. |
|
|
887
|
+
| **[PPTX Toolkit Usecase](https://github.com/camel-ai/camel/tree/master/examples/usecases/pptx_toolkit_usecase)** | Analyze PowerPoint documents and extract structured insights through multi-agent collaboration. |
|
|
888
|
+
|
|
889
|
+
### 3 Retrieval-Augmented Multi-Agent Chat
|
|
890
|
+
|
|
891
|
+
| Usecase | Description |
|
|
892
|
+
| :----------------------------------------------------------- | :----------------------------------------------------------- |
|
|
893
|
+
| **[Chat with GitHub](https://github.com/camel-ai/camel/tree/master/examples/usecases/chat_with_github)** | Query and understand GitHub codebases through CAMEL agents leveraging RAG-style workflows, accelerating developer onboarding and codebase navigation. |
|
|
894
|
+
| **[Chat with YouTube](https://github.com/camel-ai/camel/tree/master/examples/usecases/chat_with_youtube)** | Conversational agents extract and summarize video transcripts, enabling faster content understanding and repurposing. |
|
|
895
|
+
|
|
896
|
+
### 4 Video & Document Intelligence
|
|
897
|
+
|
|
898
|
+
| Usecase | Description |
|
|
899
|
+
| :----------------------------------------------------------- | :----------------------------------------------------------- |
|
|
900
|
+
| **[YouTube OCR](https://github.com/camel-ai/camel/tree/master/examples/usecases/youtube_ocr)** | Agents perform OCR on video screenshots to summarize visual content, supporting media monitoring and compliance. |
|
|
901
|
+
| **[Mistral OCR](https://github.com/camel-ai/camel/tree/master/examples/usecases/mistral_OCR)** | CAMEL agents use OCR with Mistral to analyze documents, reducing manual effort in document understanding workflows. |
|
|
902
|
+
|
|
903
|
+
### 5 Research & Collaboration
|
|
904
|
+
|
|
905
|
+
| Usecase | Description |
|
|
906
|
+
| :----------------------------------------------------------- | :----------------------------------------------------------- |
|
|
907
|
+
| **[Multi-Agent Research Assistant](https://github.com/camel-ai/camel/tree/master/examples/usecases/multi_agent_research_assistant)** | Simulates a team of research agents collaborating on literature review, improving efficiency in exploratory analysis and reporting. |
|
|
747
908
|
|
|
748
909
|
<br>
|
|
749
910
|
|
|
911
|
+
## 🧱 Built with CAMEL (Real-world Producs & Research)
|
|
912
|
+
<div align="left">
|
|
913
|
+
<a href="https://www.camel-ai.org/">
|
|
914
|
+
<img src="docs/images/built_with_CAMEL.png" alt="Built with CAMEL" height="40px">
|
|
915
|
+
</a>
|
|
916
|
+
</div>
|
|
917
|
+
|
|
918
|
+
### Research Projects
|
|
919
|
+
|
|
920
|
+
| Name | Description |
|
|
921
|
+
|:---|:---|
|
|
922
|
+
| **[ChatDev](https://github.com/OpenBMB/ChatDev/tree/main/camel)** | Communicative Agents for software Development |
|
|
923
|
+
| **[Paper2Poster](https://github.com/Paper2Poster/Paper2Poster)** | Multimodal poster automation from scientific papers |
|
|
924
|
+
| **[Paper2Video](https://github.com/showlab/Paper2Video)** | Automatic video generation from scientific papers |
|
|
925
|
+
|
|
926
|
+
### Product Projects
|
|
927
|
+
|
|
928
|
+
| Name | Description |
|
|
929
|
+
|:---|:---|
|
|
930
|
+
| **[Eigent](https://www.eigent.ai/)** | The World First Multi-agent Workforce |
|
|
931
|
+
| **[EigentBot](https://bot.eigent.ai/)** | One EigentBot,
|
|
932
|
+
Every Code Answer |
|
|
933
|
+
| **[Matrix](https://matrix.eigent.ai/)** | Social Media Simulation |
|
|
934
|
+
| **[AI Geometric](https://www.linkedin.com/posts/aigeometric_ai-interviewpreparation-careerdevelopment-activity-7261428422516555776-MtaK/?utm_source=share&utm_medium=member_desktop&rcm=ACoAAChHluEB9xRwkjiJ6VSAzqM2Y-U4NI2sKGY)** | AI-powered interview copilot |
|
|
935
|
+
| **[Log10](https://github.com/log10-io/log10/blob/main/src/log10/agents/camel.py)** | AI accuracy, delivered |
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
## 🗓️ Events
|
|
939
|
+
|
|
940
|
+
We are actively involved in community events including:
|
|
941
|
+
|
|
942
|
+
- 🎙️ **Community Meetings** — Weekly virtual syncs with the CAMEL team
|
|
943
|
+
- 🏆 **Competitions** — Hackathons, Bounty Tasks and coding challenges hosted by CAMEL
|
|
944
|
+
- 🤝 **Volunteer Activities** — Contributions, documentation drives, and mentorship
|
|
945
|
+
- 🌍 **Ambassador Programs** — Represent CAMEL in your university or local tech groups
|
|
946
|
+
|
|
947
|
+
> Want to host or participate in a CAMEL event? Join our [Discord](https://discord.com/invite/CNcNpquyDc) or want to be part of [Ambassador Program](https://www.camel-ai.org/ambassador).
|
|
948
|
+
|
|
949
|
+
|
|
750
950
|
|
|
751
951
|
## Contributing to CAMEL
|
|
752
952
|
|
|
@@ -754,6 +954,14 @@ Practical guides and tutorials for implementing specific functionalities in CAME
|
|
|
754
954
|
>
|
|
755
955
|
> We also welcome you to help CAMEL grow by sharing it on social media, at events, or during conferences. Your support makes a big difference!
|
|
756
956
|
|
|
957
|
+
## Contributors
|
|
958
|
+
|
|
959
|
+
<a href="https://github.com/camel-ai/camel/graphs/contributors">
|
|
960
|
+
<img src="https://contrib.rocks/image?repo=camel-ai/camel" />
|
|
961
|
+
</a>
|
|
962
|
+
|
|
963
|
+
Made with [contrib.rocks](https://contrib.rocks).
|
|
964
|
+
|
|
757
965
|
<br>
|
|
758
966
|
|
|
759
967
|
## Community & Contact
|
|
@@ -806,7 +1014,7 @@ The source code is licensed under Apache 2.0.
|
|
|
806
1014
|
<br>
|
|
807
1015
|
|
|
808
1016
|
[docs-image]: https://img.shields.io/badge/Documentation-EB3ECC
|
|
809
|
-
[docs-url]: https://camel-ai.github.io/camel/index
|
|
1017
|
+
[docs-url]: https://camel-ai.github.io/camel/index
|
|
810
1018
|
[star-image]: https://img.shields.io/github/stars/camel-ai/camel?label=stars&logo=github&color=brightgreen
|
|
811
1019
|
[star-url]: https://github.com/camel-ai/camel/stargazers
|
|
812
1020
|
[package-license-image]: https://img.shields.io/badge/License-Apache_2.0-blue.svg
|
|
@@ -827,4 +1035,7 @@ The source code is licensed under Apache 2.0.
|
|
|
827
1035
|
[reddit-url]: https://www.reddit.com/r/CamelAI/
|
|
828
1036
|
[reddit-image]: https://img.shields.io/reddit/subreddit-subscribers/CamelAI?style=plastic&logo=reddit&label=r%2FCAMEL&labelColor=white
|
|
829
1037
|
[ambassador-url]: https://www.camel-ai.org/community
|
|
830
|
-
[package-download-url]: https://pypi.org/project/camel-ai
|
|
1038
|
+
[package-download-url]: https://pypi.org/project/camel-ai
|
|
1039
|
+
[join-us]:https://eigent-ai.notion.site/eigent-ai-careers
|
|
1040
|
+
[join-us-image]:https://img.shields.io/badge/Join%20Us-yellow?style=plastic
|
|
1041
|
+
[image-join-us]: https://camel-ai.github.io/camel_asset/graphics/join_us.png
|