AI agents that work with Humans

Pixolabs is an API and SDK that enables AI Agents to contact humans for feedback, input, and approvals.

Demo

Approval Workflows

Get running with SDK in 5 minutes
Guarantee human oversight of key function calls
On denial, feedback added to agent context window

Human as Tool

Manage AI Agents Effectively

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"
)