@memgrafter/flatagents 2.1.0 → 2.2.0
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/MACHINES.md +1 -1
- package/package.json +1 -1
- package/schemas/flatagent.d.ts +1 -1
- package/schemas/flatagent.slim.d.ts +1 -1
- package/schemas/flatagents-runtime.d.ts +1 -1
- package/schemas/flatagents-runtime.schema.json +1 -1
- package/schemas/flatagents-runtime.slim.d.ts +1 -1
- package/schemas/flatmachine.d.ts +3 -1
- package/schemas/flatmachine.slim.d.ts +2 -1
- package/schemas/profiles.d.ts +1 -1
- package/schemas/profiles.slim.d.ts +1 -1
package/MACHINES.md
CHANGED
package/package.json
CHANGED
package/schemas/flatagent.d.ts
CHANGED
|
@@ -252,7 +252,7 @@ export interface BackendConfig {
|
|
|
252
252
|
dynamodb_table?: string;
|
|
253
253
|
aws_region?: string;
|
|
254
254
|
}
|
|
255
|
-
export const SPEC_VERSION = "2.
|
|
255
|
+
export const SPEC_VERSION = "2.2.0";
|
|
256
256
|
export interface SDKRuntimeWrapper {
|
|
257
257
|
spec: "flatagents-runtime";
|
|
258
258
|
spec_version: typeof SPEC_VERSION;
|
package/schemas/flatmachine.d.ts
CHANGED
|
@@ -316,9 +316,10 @@
|
|
|
316
316
|
* parent_execution_id - Lineage tracking (v0.4.0)
|
|
317
317
|
* pending_launches - Outbox pattern (v0.4.0)
|
|
318
318
|
* waiting_channel - Signal channel this machine is blocked on (v1.2.0)
|
|
319
|
+
* config_hash - Content-addressed machine config key for cross-SDK resume (v2.1.0)
|
|
319
320
|
*/
|
|
320
321
|
|
|
321
|
-
export const SPEC_VERSION = "2.
|
|
322
|
+
export const SPEC_VERSION = "2.2.0";
|
|
322
323
|
|
|
323
324
|
export interface MachineWrapper {
|
|
324
325
|
spec: "flatmachine";
|
|
@@ -461,6 +462,7 @@ export interface MachineSnapshot {
|
|
|
461
462
|
tool_calls_count: number;
|
|
462
463
|
loop_cost: number;
|
|
463
464
|
};
|
|
465
|
+
config_hash?: string;
|
|
464
466
|
}
|
|
465
467
|
|
|
466
468
|
export interface PersistenceConfig {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const SPEC_VERSION = "2.
|
|
1
|
+
export const SPEC_VERSION = "2.2.0";
|
|
2
2
|
export interface MachineWrapper {
|
|
3
3
|
spec: "flatmachine";
|
|
4
4
|
spec_version: string;
|
|
@@ -123,6 +123,7 @@ export interface MachineSnapshot {
|
|
|
123
123
|
tool_calls_count: number;
|
|
124
124
|
loop_cost: number;
|
|
125
125
|
};
|
|
126
|
+
config_hash?: string;
|
|
126
127
|
}
|
|
127
128
|
export interface PersistenceConfig {
|
|
128
129
|
enabled: boolean;
|
package/schemas/profiles.d.ts
CHANGED