camel-ai 0.2.67__py3-none-any.whl → 0.2.68__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/environments/__init__.py +12 -0
- camel/environments/rlcards_env.py +860 -0
- camel/interpreters/docker/Dockerfile +2 -5
- camel/loaders/firecrawl_reader.py +4 -4
- camel/memories/blocks/vectordb_block.py +8 -1
- camel/memories/context_creators/score_based.py +123 -19
- camel/models/anthropic_model.py +114 -2
- camel/societies/workforce/prompts.py +42 -9
- camel/societies/workforce/single_agent_worker.py +36 -6
- camel/societies/workforce/task_channel.py +9 -2
- camel/societies/workforce/worker.py +98 -16
- camel/societies/workforce/workforce.py +61 -27
- {camel_ai-0.2.67.dist-info → camel_ai-0.2.68.dist-info}/METADATA +2 -1
- {camel_ai-0.2.67.dist-info → camel_ai-0.2.68.dist-info}/RECORD +17 -16
- {camel_ai-0.2.67.dist-info → camel_ai-0.2.68.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.67.dist-info → camel_ai-0.2.68.dist-info}/licenses/LICENSE +0 -0
camel/__init__.py
CHANGED
camel/environments/__init__.py
CHANGED
|
@@ -13,6 +13,13 @@
|
|
|
13
13
|
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
|
|
14
14
|
from .models import Action, Environment, Observation, StepResult
|
|
15
15
|
from .multi_step import MultiStepEnv
|
|
16
|
+
from .rlcards_env import (
|
|
17
|
+
ActionExtractor,
|
|
18
|
+
BlackjackEnv,
|
|
19
|
+
DoudizhuEnv,
|
|
20
|
+
LeducHoldemEnv,
|
|
21
|
+
RLCardsEnv,
|
|
22
|
+
)
|
|
16
23
|
from .single_step import SingleStepEnv
|
|
17
24
|
from .tic_tac_toe import Opponent, TicTacToeEnv
|
|
18
25
|
|
|
@@ -25,4 +32,9 @@ __all__ = [
|
|
|
25
32
|
"StepResult",
|
|
26
33
|
"TicTacToeEnv",
|
|
27
34
|
"Opponent",
|
|
35
|
+
"RLCardsEnv",
|
|
36
|
+
"BlackjackEnv",
|
|
37
|
+
"LeducHoldemEnv",
|
|
38
|
+
"ActionExtractor",
|
|
39
|
+
"DoudizhuEnv",
|
|
28
40
|
]
|