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 CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  from camel.logger import disable_logging, enable_logging, set_log_level
16
16
 
17
- __version__ = '0.2.67'
17
+ __version__ = '0.2.68'
18
18
 
19
19
  __all__ = [
20
20
  '__version__',
@@ -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
  ]