@eggjs/tegg-types 3.73.0-beta.1 → 3.73.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.
@@ -62,6 +62,12 @@ export interface RunObject {
62
62
  }
63
63
  export interface CreateRunInput {
64
64
  threadId?: string;
65
+ /**
66
+ * Populated by AgentRuntime before calling execRun.
67
+ * - true: threadId was provided (resume existing conversation)
68
+ * - false: no threadId provided, new thread created
69
+ */
70
+ isResume?: boolean;
65
71
  input: {
66
72
  messages: InputMessage[];
67
73
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eggjs/tegg-types",
3
- "version": "3.73.0-beta.1",
3
+ "version": "3.73.0",
4
4
  "description": "tegg types",
5
5
  "keywords": [
6
6
  "egg",
@@ -45,5 +45,5 @@
45
45
  "ts-node": "^10.9.1",
46
46
  "typescript": "^5.0.4"
47
47
  },
48
- "gitHead": "b29319ee49b55f6e777d5581d70bfea224bf6e1f"
48
+ "gitHead": "c5b7d35c5a3c0ca6aecfaaa6b15d0f8293d155bd"
49
49
  }