@forwardimpact/libeval 0.1.22 → 0.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/agent-runner.js
CHANGED
|
@@ -275,7 +275,14 @@ export function createSupervisedAgentToolServer(ctx) {
|
|
|
275
275
|
}
|
|
276
276
|
|
|
277
277
|
/**
|
|
278
|
-
* Facilitator tools: Ask + Announce + Conclude +
|
|
278
|
+
* Facilitator tools: Ask + Announce + Conclude + RollCall.
|
|
279
|
+
*
|
|
280
|
+
* Redirect is intentionally omitted. In facilitated mode the facilitator
|
|
281
|
+
* can re-Ask a participant to course-correct — Ask overwrites the pending
|
|
282
|
+
* slot, giving the agent a proper round-trip path. Redirect (abort +
|
|
283
|
+
* direct message) belongs in supervised mode where a single agent is
|
|
284
|
+
* steered by a supervisor.
|
|
285
|
+
*
|
|
279
286
|
* @param {object} ctx - Orchestration context
|
|
280
287
|
* @returns {object} MCP server config (type: "sdk")
|
|
281
288
|
*/
|
|
@@ -301,12 +308,6 @@ export function createFacilitatorToolServer(ctx) {
|
|
|
301
308
|
{ summary: z.string() },
|
|
302
309
|
createConcludeHandler(ctx),
|
|
303
310
|
),
|
|
304
|
-
tool(
|
|
305
|
-
"Redirect",
|
|
306
|
-
"Interrupt a participant with replacement instructions. Use to='all' for all participants or a specific name.",
|
|
307
|
-
{ message: z.string(), to: z.string().optional() },
|
|
308
|
-
createRedirectHandler(ctx),
|
|
309
|
-
),
|
|
310
311
|
tool(
|
|
311
312
|
"RollCall",
|
|
312
313
|
"List all participants in the session.",
|