Files
united-workforce/packages/workflow-reactor
xiaoju bb1293f6b9 fix: add exports field to 6 packages for proper type resolution
Packages without exports.types pointed main/types to src/ which
doesn't exist in published tarballs. Now all packages have:
  exports."." = { types: dist/index.d.ts, import: src/index.ts }

Bump to 0.3.18.
2026-05-13 08:29:36 +00:00
..

@uncaged/workflow-reactor

LLM calling abstraction and thread “reactor” for structured tool invocation.

What This Package Does

It exposes createLlmFn (chat completion wrapper) and createThreadReactor (multi-turn tool loop configuration) plus supporting message/tool types. @uncaged/workflow-execute consumes this for extractor and supervisor paths that talk to OpenAI-style APIs with tools.

Key Exports

From src/index.ts:

  • Functions: createLlmFn, createThreadReactor
  • Types: ChatMessage, LlmFn, StructuredToolSpec, ThreadReactorConfig, ThreadReactorFn, ThreadReactorInvokeArgs, ToolCall, ToolDefinition

Dependencies

  • Workspace: @uncaged/workflow-protocol
  • Peer: zod ^4

Usage

import { createLlmFn, createThreadReactor } from "@uncaged/workflow-reactor";
// Usually composed inside @uncaged/workflow-execute rather than directly by applications.