MCPcopy Create free account
hub / github.com/OpenManus/OpenManus-RL / SimpleConfig

Class SimpleConfig

test/test_rollout_env.py:24–30  ·  view source on GitHub ↗

Configuration for test runs.

Source from the content-addressed store, hash-verified

22
23
24class SimpleConfig:
25 """Configuration for test runs."""
26 def __init__(self, env_name="webshop", batch_size=2):
27 self.env = EnvConfig(env_name)
28 self.data = DataConfig(batch_size)
29 self.memory_file = f'test_memory_{env_name}.md'
30 self.use_staged_format = True
31
32class EnvConfig:
33 def __init__(self, env_name):

Callers 2

test_with_webshopFunction · 0.85
test_with_alfworldFunction · 0.85

Calls

no outgoing calls

Tested by 2

test_with_webshopFunction · 0.68
test_with_alfworldFunction · 0.68