@effect-agent/workflow 0.1.0-beta.104 → 0.1.0-beta.106

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.
@@ -21,15 +21,107 @@ declare const WorkflowExecutionFailure_base: Schema.Class<WorkflowExecutionFailu
21
21
  readonly failure: Schema.optionalKey<Schema.declareConstructor<{
22
22
  readonly errorTag: string;
23
23
  readonly message: string;
24
+ readonly diagnostic?: import("effect-agent/failure-diagnostic").Diagnostic | undefined;
25
+ readonly context?: {
26
+ readonly agentId?: string | undefined;
27
+ readonly threadId?: string | undefined;
28
+ readonly runId?: string | undefined;
29
+ readonly submissionId?: string | undefined;
30
+ readonly attemptId?: string | undefined;
31
+ readonly turnId?: string | undefined;
32
+ readonly toolCallId?: string | undefined;
33
+ readonly toolName?: string | undefined;
34
+ readonly callId?: string | undefined;
35
+ readonly check?: string | undefined;
36
+ readonly operation?: string | undefined;
37
+ } | undefined;
24
38
  }, {
25
39
  readonly errorTag: string;
26
40
  readonly message: string;
41
+ readonly diagnostic?: import("effect-agent/failure-diagnostic").Diagnostic | undefined;
42
+ readonly context?: {
43
+ readonly agentId?: string | undefined;
44
+ readonly threadId?: string | undefined;
45
+ readonly runId?: string | undefined;
46
+ readonly submissionId?: string | undefined;
47
+ readonly attemptId?: string | undefined;
48
+ readonly turnId?: string | undefined;
49
+ readonly toolCallId?: string | undefined;
50
+ readonly toolName?: string | undefined;
51
+ readonly callId?: string | undefined;
52
+ readonly check?: string | undefined;
53
+ readonly operation?: string | undefined;
54
+ } | undefined;
27
55
  }, readonly [Schema.Struct<{
28
56
  readonly errorTag: Schema.NonEmptyString;
29
57
  readonly message: Schema.String;
58
+ readonly diagnostic: Schema.optionalKey<Schema.Codec<import("effect-agent/failure-diagnostic").Diagnostic, import("effect-agent/failure-diagnostic").Diagnostic, never, never>>;
59
+ readonly context: Schema.optionalKey<Schema.declareConstructor<{
60
+ readonly agentId?: string | undefined;
61
+ readonly threadId?: string | undefined;
62
+ readonly runId?: string | undefined;
63
+ readonly submissionId?: string | undefined;
64
+ readonly attemptId?: string | undefined;
65
+ readonly turnId?: string | undefined;
66
+ readonly toolCallId?: string | undefined;
67
+ readonly toolName?: string | undefined;
68
+ readonly callId?: string | undefined;
69
+ readonly check?: string | undefined;
70
+ readonly operation?: string | undefined;
71
+ }, {
72
+ readonly agentId?: string | undefined;
73
+ readonly threadId?: string | undefined;
74
+ readonly runId?: string | undefined;
75
+ readonly submissionId?: string | undefined;
76
+ readonly attemptId?: string | undefined;
77
+ readonly turnId?: string | undefined;
78
+ readonly toolCallId?: string | undefined;
79
+ readonly toolName?: string | undefined;
80
+ readonly callId?: string | undefined;
81
+ readonly check?: string | undefined;
82
+ readonly operation?: string | undefined;
83
+ }, readonly [Schema.Struct<{
84
+ readonly agentId: Schema.optionalKey<Schema.String>;
85
+ readonly threadId: Schema.optionalKey<Schema.String>;
86
+ readonly runId: Schema.optionalKey<Schema.String>;
87
+ readonly submissionId: Schema.optionalKey<Schema.String>;
88
+ readonly attemptId: Schema.optionalKey<Schema.String>;
89
+ readonly turnId: Schema.optionalKey<Schema.String>;
90
+ readonly toolCallId: Schema.optionalKey<Schema.String>;
91
+ readonly toolName: Schema.optionalKey<Schema.String>;
92
+ readonly callId: Schema.optionalKey<Schema.String>;
93
+ readonly check: Schema.optionalKey<Schema.String>;
94
+ readonly operation: Schema.optionalKey<Schema.String>;
95
+ }>], {
96
+ readonly agentId?: string | undefined;
97
+ readonly threadId?: string | undefined;
98
+ readonly runId?: string | undefined;
99
+ readonly submissionId?: string | undefined;
100
+ readonly attemptId?: string | undefined;
101
+ readonly turnId?: string | undefined;
102
+ readonly toolCallId?: string | undefined;
103
+ readonly toolName?: string | undefined;
104
+ readonly callId?: string | undefined;
105
+ readonly check?: string | undefined;
106
+ readonly operation?: string | undefined;
107
+ }>>;
30
108
  }>], {
31
109
  readonly errorTag: string;
32
110
  readonly message: string;
111
+ readonly diagnostic?: import("effect-agent/failure-diagnostic").Diagnostic | undefined;
112
+ readonly context?: {
113
+ readonly agentId?: string | undefined;
114
+ readonly threadId?: string | undefined;
115
+ readonly runId?: string | undefined;
116
+ readonly submissionId?: string | undefined;
117
+ readonly attemptId?: string | undefined;
118
+ readonly turnId?: string | undefined;
119
+ readonly toolCallId?: string | undefined;
120
+ readonly toolName?: string | undefined;
121
+ readonly callId?: string | undefined;
122
+ readonly check?: string | undefined;
123
+ readonly operation?: string | undefined;
124
+ } | undefined;
33
125
  }>>;
34
126
  }>, import("effect/Cause").YieldableError>;
35
127
  /** A terminal agent outcome or invalid invocation, distinct from retriable infrastructure errors. */
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@effect-agent/workflow","version":"0.1.0-beta.104","dependencies":{"effect-agent":"0.1.0-beta.104"},"devDependencies":{"@effect-agent/storage-memory":"0.1.0-beta.104","@effect/platform-node":"4.0.0-rc.115","@effect/vitest":"4.0.0-rc.115","effect":"4.0.0-rc.115","typescript":"7.0.2","vite-plus":"0.3.2"},"peerDependencies":{"effect":"^4.0.0-rc.115"},"exports":{".":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"./agent-workflow":{"types":"./dist/AgentWorkflow.d.mts","default":"./dist/AgentWorkflow.mjs"},"./workflow-agent-host":{"types":"./dist/WorkflowAgentHost.d.mts","default":"./dist/WorkflowAgentHost.mjs"},"./workflow-dispatch":{"types":"./dist/WorkflowDispatch.d.mts","default":"./dist/WorkflowDispatch.mjs"},"./workflow-execution":{"types":"./dist/WorkflowExecution.d.mts","default":"./dist/WorkflowExecution.mjs"}},"description":"Effect Workflow execution for the existing durable Agent runtime.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/danieljvdm/effect-agent.git","directory":"packages/workflow"},"files":["dist","src"],"type":"module","sideEffects":[],"publishConfig":{"access":"public"},"scripts":{"build":"vp pack","check":"tsc --noEmit -p tsconfig.json","test":"vp test --passWithNoTests"}}
1
+ {"name":"@effect-agent/workflow","version":"0.1.0-beta.106","dependencies":{"effect-agent":"0.1.0-beta.106"},"devDependencies":{"@effect-agent/storage-memory":"0.1.0-beta.106","@effect/platform-node":"4.0.0-rc.115","@effect/vitest":"4.0.0-rc.115","effect":"4.0.0-rc.115","typescript":"7.0.2","vite-plus":"0.3.2"},"peerDependencies":{"effect":"^4.0.0-rc.115"},"exports":{".":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"./agent-workflow":{"types":"./dist/AgentWorkflow.d.mts","default":"./dist/AgentWorkflow.mjs"},"./workflow-agent-host":{"types":"./dist/WorkflowAgentHost.d.mts","default":"./dist/WorkflowAgentHost.mjs"},"./workflow-dispatch":{"types":"./dist/WorkflowDispatch.d.mts","default":"./dist/WorkflowDispatch.mjs"},"./workflow-execution":{"types":"./dist/WorkflowExecution.d.mts","default":"./dist/WorkflowExecution.mjs"}},"description":"Effect Workflow execution for the existing durable Agent runtime.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/danieljvdm/effect-agent.git","directory":"packages/workflow"},"files":["dist","src"],"type":"module","sideEffects":[],"publishConfig":{"access":"public"},"scripts":{"build":"vp pack","check":"tsc --noEmit -p tsconfig.json","test":"vp test --passWithNoTests"}}