MCPcopy Index your code
hub / github.com/IBM/AssetOpsBench / _run

Function _run

src/agent/deep_agent/cli.py:53–63  ·  view source on GitHub ↗
(args: argparse.Namespace)

Source from the content-addressed store, hash-verified

51
52
53async def _run(args: argparse.Namespace) -> None:
54 from agent.deep_agent.runner import DeepAgentRunner
55
56 runner = DeepAgentRunner(
57 model=args.model_id,
58 recursion_limit=args.recursion_limit,
59 )
60 result = await runner.run(args.question)
61 print_result(
62 result, show_trajectory=args.show_trajectory, output_json=args.output_json
63 )
64
65
66def main() -> None:

Callers

nothing calls this directly

Calls 3

runMethod · 0.95
DeepAgentRunnerClass · 0.90
print_resultFunction · 0.85

Tested by

no test coverage detected