|
| 1 | +from langchain.agents import AgentExecutor, create_structured_chat_agent |
| 2 | +from langchain import hub |
| 3 | +from stripe_agent_toolkit.langchain.toolkit import StripeAgentToolkit |
| 4 | +from restack_ai.function import function, FunctionFailure |
| 5 | +from langchain_openai import ChatOpenAI |
| 6 | + |
| 7 | +import os |
| 8 | +from dotenv import load_dotenv |
| 9 | +from pydantic import SecretStr |
| 10 | + |
| 11 | +load_dotenv() |
| 12 | + |
| 13 | +@function.defn() |
| 14 | +async def create_payment_link(): |
| 15 | + stripe_secret_key = os.getenv("STRIPE_SECRET_KEY") |
| 16 | + openai_api_key = os.getenv("OPENAI_API_KEY") |
| 17 | + langchain_api_key = os.getenv("LANGCHAIN_API_KEY") |
| 18 | + |
| 19 | + if stripe_secret_key is None: |
| 20 | + raise FunctionFailure("STRIPE_SECRET_KEY is not set", non_retryable=True) |
| 21 | + |
| 22 | + if langchain_api_key is None: |
| 23 | + raise FunctionFailure("LANGCHAIN_API_KEY is not set", non_retryable=True) |
| 24 | + |
| 25 | + if openai_api_key is None: |
| 26 | + raise FunctionFailure("OPENAI_API_KEY is not set", non_retryable=True) |
| 27 | + |
| 28 | + try: |
| 29 | + stripe_agent_toolkit = StripeAgentToolkit( |
| 30 | + secret_key=stripe_secret_key, |
| 31 | + configuration={ |
| 32 | + "actions": { |
| 33 | + "payment_links": { |
| 34 | + "create": True, |
| 35 | + }, |
| 36 | + "products": { |
| 37 | + "create": True, |
| 38 | + }, |
| 39 | + "prices": { |
| 40 | + "create": True, |
| 41 | + }, |
| 42 | + } |
| 43 | + }, |
| 44 | + ) |
| 45 | + |
| 46 | + model = ChatOpenAI(api_key=SecretStr(openai_api_key)) |
| 47 | + |
| 48 | + prompt = hub.pull("hwchase17/structured-chat-agent") |
| 49 | + |
| 50 | + agent = create_structured_chat_agent(model, stripe_agent_toolkit.get_tools(), prompt) |
| 51 | + agent_executor = AgentExecutor(agent=agent, tools=stripe_agent_toolkit.get_tools()) |
| 52 | + |
| 53 | + result = agent_executor.invoke({ |
| 54 | + "input": "Create a payment link for a new product called \"Test\" with a price of $100." |
| 55 | + }) |
| 56 | + |
| 57 | + return result["output"] |
| 58 | + except Exception as e: |
| 59 | + raise FunctionFailure(f"Error creating payment link: {e}", non_retryable=True) |
0 commit comments