From 96718d9443593e56133b229ddacfc7387055050a Mon Sep 17 00:00:00 2001 From: TA Date: Fri, 22 May 2026 09:10:40 -0700 Subject: [PATCH] =?UTF-8?q?Add=20awaithumans=20to=20Frameworks=20=E2=80=94?= =?UTF-8?q?=20HITL=20primitive=20for=20AI=20agents?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit awaithumans is a one-function-call human-in-the-loop primitive for AI agents. The Temporal adapter uses signals to park a workflow while a human reviews via Slack / email / web dashboard, then resumes with the typed Pydantic / Zod response. Durable across worker restarts. Apache 2.0. Python + TypeScript SDKs. Repo: https://github.com/awaithumans/awaithumans --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 977dc29..8e5e71d 100644 --- a/readme.md +++ b/readme.md @@ -121,6 +121,7 @@ Temporal is a [durable execution system](https://youtu.be/W0Ygep6iCJY?t=609). It ## Frameworks +- [awaithumans](https://github.com/awaithumans/awaithumans) - HITL primitive for AI agents. One function call (`await_human` / `awaitHuman`) suspends the workflow until a real person reviews via Slack, email, or a built-in dashboard, then resumes with the typed response. The Temporal adapter uses signals to park the workflow while it waits — durable across worker restarts. Python + TypeScript SDKs, Apache 2.0. - [iWF](https://github.com/indeedeng/iwf) - DSL workflow framework built on Temporal. - [Output](https://github.com/growthxai/output) - AI Agents & Workflows with versioned prompts, evals, tracing, and credentials in one TypeScript framework built on Temporal.