HackerTrans
トップ新着トレンドコメント過去質問紹介求人

swrly

no profile record

投稿

[untitled]

1 ポイント·投稿者 swrly·3 か月前·0 コメント

Ask HN: How are you orchestrating multi-agent AI workflows in production?

8 ポイント·投稿者 swrly·3 か月前·11 コメント

コメント

swrly
·3 か月前·議論
[dead]
swrly
·3 か月前·議論
This is a great question. We handle it with session state that persists across turns — the agent's memory scope can be set to "agent" (persists across runs) vs "swirl" (one run only). For truly long-running conversations, we store context in agent memories with importance scoring, so the agent can recall relevant context days later without carrying the full history. It's not perfect yet but it works for most production patterns we've seen.
swrly
·3 か月前·議論
Parallel workers in git worktrees is clever. We have a similar pattern with fan-out/fan-in — you can split an array across parallel agent executions and collect results. The SQLite-structured JSON output approach is interesting for coordination. We use template variables + scratchpad (Redis-backed shared state) for inter-agent data flow. Different trade-offs — yours gives you more control at the cost of more infrastructure.
swrly
·3 か月前·議論
[dead]
swrly
·3 か月前·議論
[dead]
swrly
·3 か月前·議論
[dead]
swrly
·3 か月前·議論
Interesting — I hadn't looked into AGNO closely. The isolation and control plane approach sounds solid. How do you handle observability? That's been one of the harder parts for us — knowing exactly which agent produced which output when something goes wrong in a multi-step pipeline.

Also curious if you're running agents on triggers (webhooks, cron) or mostly manual execution?
swrly
·3 か月前·議論
I agree, YouTube search is completely useless when we really need it. Especially with fizzy search!