Mock arguments for agent execution
| 21 | |
| 22 | |
| 23 | class MockArgs: |
| 24 | """Mock arguments for agent execution""" |
| 25 | |
| 26 | def __init__(self, output_dir=None): |
| 27 | self.model = "gpt-4" |
| 28 | self.api_base = None |
| 29 | self.temperature = 0.7 |
| 30 | self.max_tool_calls_per_step = 5 |
| 31 | self.max_tokens_per_step = 4000 |
| 32 | self.context_threshold = 0.6 |
| 33 | self.workflow_file = None |
| 34 | self.output_dir = output_dir |
| 35 | |
| 36 | |
| 37 | class TestAgentSPEX: |
no outgoing calls