Pixolabs is an API and SDK that enables AI Agents to contact humans for feedback, input, and approvals.
from Pixolabs import Pixolabs
pl = Pixolabs()
@pl.require_approval()
def send_email(to: str, subject: str, body: str):
"""Send an email to the customer"""
def run_llm_task(prompt, tools, llm="gpt-4"):
"""Your custom LLM task implementation"""
...
run_llm_task(
prompt="Send an email welcoming the user to
the platform and encouraging them to...",
tools=[send_email],
llm="gpt-4"
)