Configuration for test runs.
| 22 | |
| 23 | |
| 24 | class 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 | |
| 32 | class EnvConfig: |
| 33 | def __init__(self, env_name): |
no outgoing calls