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