MCPcopy Create free account
hub / github.com/ScaleML/AgentSPEX / MockArgs

Class MockArgs

tests/tool_tests/test_agentspex.py:23–34  ·  view source on GitHub ↗

Mock arguments for agent execution

Source from the content-addressed store, hash-verified

21
22
23class 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
37class TestAgentSPEX:

Calls

no outgoing calls