gotoHuman is a web app where you can approve actions of your AI agents. Keep a human in the loop to review AI‑generated content, approve critical actions or provide input.
pip install gotohumanCreate a review template in gotoHuman adding fields to capture the content to review and the input and feedback you want to collect.
Setup environment variables with your API key and an agent ID.
GOTOHUMAN_API_KEY=YOUR_API_KEY
GOTOHUMAN_AGENT_ID=YOUR_AGENT_ID
Initialize the SDK:
from gotohuman import GotoHuman
gotoHuman = GotoHuman()
# or: GotoHuman(api_key="...", agent_id="...")Request a new review and include the data for your review template's fields.
Read the docs for more details.
Example request:
review = gotoHuman.create_review("YOUR_REVIEW_TEMPLATE_ID")
review.set_review_data({
"ai_social_media_post": ai_text_draft,
"ai_image": ai_image_url,
})
review.add_meta_data("threadId", threadId)
review.assign_to_users(["jess@acme.org"])
try:
response = review.send_request()
print("Review sent successfully:", response)
except Exception as e:
print("An error occurred:", e)Optionally pass a config object to control review behavior:
review.set_review_config({"someOption": True})Or send asynchronously:
response = await review.async_send_request()
