File size: 314 Bytes
7edb85f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from llm.planner import create_tool_plan


def main() -> None:
    thinking, plan = create_tool_plan(
        "Compare requests and httpx."
    )

    print("\n--- THINKING ---")
    print(thinking)

    print("\n--- TOOL PLAN ---")
    print(plan.model_dump_json(indent=2))


if __name__ == "__main__":
    main()