MCPcopy Index your code
hub / github.com/Integuru-AI/Integuru / cli

Function cli

integuru/__main__.py:40–54  ·  view source on GitHub ↗
(
    model, prompt, har_path, cookie_path, max_steps, input_variables, generate_code
)

Source from the content-addressed store, hash-verified

38 help="Whether to generate the full integration code",
39)
40def cli(
41 model, prompt, har_path, cookie_path, max_steps, input_variables, generate_code
42):
43 input_vars = dict(input_variables)
44 asyncio.run(
45 call_agent(
46 model,
47 prompt,
48 har_path,
49 cookie_path,
50 input_variables=input_vars,
51 max_steps=max_steps,
52 to_generate_code=generate_code,
53 )
54 )
55
56if __name__ == "__main__":
57 cli()

Callers 1

__main__.pyFile · 0.85

Calls 1

call_agentFunction · 0.90

Tested by

no test coverage detected