LLM planner, not perfect but ok

This commit is contained in:
Steve Androulakis
2025-01-01 16:57:08 -08:00
parent 33af355363
commit 245d64fca9
8 changed files with 275 additions and 123 deletions

7
tools/create_invoice.py Normal file
View File

@@ -0,0 +1,7 @@
def create_invoice(args: dict) -> dict:
# e.g. amount, flight details, etc.
print("[CreateInvoice] Creating invoice with:", args)
return {
"invoiceStatus": "generated",
"invoiceURL": "https://pay.example.com/invoice/12345",
}