mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 05:58:08 +01:00
Move where goal is set, make dummy data default for create_invoice
This commit is contained in:
@@ -4,7 +4,7 @@ from dotenv import load_dotenv
|
||||
|
||||
load_dotenv(override=True) # Load environment variables from a .env file
|
||||
|
||||
stripe.api_key = os.getenv("STRIPE_API_KEY", "YOUR_DEFAULT_KEY")
|
||||
stripe.api_key = os.getenv("STRIPE_API_KEY")
|
||||
|
||||
|
||||
def ensure_customer_exists(
|
||||
@@ -26,41 +26,49 @@ def ensure_customer_exists(
|
||||
|
||||
def create_invoice(args: dict) -> dict:
|
||||
"""Create and finalize a Stripe invoice."""
|
||||
# Find or create customer
|
||||
customer_id = ensure_customer_exists(
|
||||
args.get("customer_id"), args.get("email", "default@example.com")
|
||||
)
|
||||
# If an API key exists in the env file, find or create customer
|
||||
if stripe.api_key is not None:
|
||||
customer_id = ensure_customer_exists(
|
||||
args.get("customer_id"), args.get("email", "default@example.com")
|
||||
)
|
||||
|
||||
# Get amount and convert to cents
|
||||
amount = args.get("amount", 200.00) # Default to $200.00
|
||||
try:
|
||||
amount_cents = int(float(amount) * 100)
|
||||
except (TypeError, ValueError):
|
||||
return {"error": "Invalid amount provided. Please confirm the amount."}
|
||||
# Get amount and convert to cents
|
||||
amount = args.get("amount", 200.00) # Default to $200.00
|
||||
try:
|
||||
amount_cents = int(float(amount) * 100)
|
||||
except (TypeError, ValueError):
|
||||
return {"error": "Invalid amount provided. Please confirm the amount."}
|
||||
|
||||
# Create an invoice item
|
||||
stripe.InvoiceItem.create(
|
||||
customer=customer_id,
|
||||
amount=amount_cents,
|
||||
currency="gbp",
|
||||
description=args.get("tripDetails", "Service Invoice"),
|
||||
)
|
||||
# Create an invoice item
|
||||
stripe.InvoiceItem.create(
|
||||
customer=customer_id,
|
||||
amount=amount_cents,
|
||||
currency="gbp",
|
||||
description=args.get("tripDetails", "Service Invoice"),
|
||||
)
|
||||
|
||||
# Create and finalize the invoice
|
||||
invoice = stripe.Invoice.create(
|
||||
customer=customer_id,
|
||||
collection_method="send_invoice", # Invoice is sent to the customer
|
||||
days_until_due=args.get("days_until_due", 7), # Default due date: 7 days
|
||||
pending_invoice_items_behavior="include", # No pending invoice items
|
||||
)
|
||||
finalized_invoice = stripe.Invoice.finalize_invoice(invoice.id)
|
||||
|
||||
return {
|
||||
"invoiceStatus": finalized_invoice.status,
|
||||
"invoiceURL": finalized_invoice.hosted_invoice_url,
|
||||
"reference": finalized_invoice.number,
|
||||
}
|
||||
# Create and finalize the invoice
|
||||
invoice = stripe.Invoice.create(
|
||||
customer=customer_id,
|
||||
collection_method="send_invoice", # Invoice is sent to the customer
|
||||
days_until_due=args.get("days_until_due", 7), # Default due date: 7 days
|
||||
pending_invoice_items_behavior="include", # No pending invoice items
|
||||
)
|
||||
finalized_invoice = stripe.Invoice.finalize_invoice(invoice.id)
|
||||
|
||||
return {
|
||||
"invoiceStatus": finalized_invoice.status,
|
||||
"invoiceURL": finalized_invoice.hosted_invoice_url,
|
||||
"reference": finalized_invoice.number,
|
||||
}
|
||||
# if no API key is in the env file, return dummy info
|
||||
else:
|
||||
print("[CreateInvoice] Creating invoice with:", args)
|
||||
return {
|
||||
"invoiceStatus": "generated",
|
||||
"invoiceURL": "https://pay.example.com/invoice/12345",
|
||||
"reference": "INV-12345",
|
||||
}
|
||||
|
||||
def create_invoice_example(args: dict) -> dict:
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user