Seda Nur Yazıcı
Deploy application to Hugging Face Spaces
7edb85f
Raw
History Blame Contribute Delete
314 Bytes
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()