Load config from config.yaml.
()
| 16 | |
| 17 | |
| 18 | def load_config(): |
| 19 | """Load config from config.yaml.""" |
| 20 | config_path = Path("mini_agent/config/config.yaml") |
| 21 | with open(config_path, encoding="utf-8") as f: |
| 22 | return yaml.safe_load(f) |
| 23 | |
| 24 | |
| 25 | @pytest.mark.asyncio |
no outgoing calls
no test coverage detected