graphlit-client 1.0.20260301003 → 1.0.20260301004
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.
|
@@ -131,6 +131,8 @@ export type Agent = {
|
|
|
131
131
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
132
132
|
/** The agent schedule policy. */
|
|
133
133
|
schedulePolicy?: Maybe<AgentSchedulePolicy>;
|
|
134
|
+
/** The agent scratchpad, for storing harness working memory. */
|
|
135
|
+
scratchpad?: Maybe<Scalars['String']['output']>;
|
|
134
136
|
/** The specification associated with this agent. */
|
|
135
137
|
specification?: Maybe<EntityReference>;
|
|
136
138
|
/** The state of the agent (i.e. created, finished). */
|
|
@@ -183,6 +185,8 @@ export type AgentInput = {
|
|
|
183
185
|
name: Scalars['String']['input'];
|
|
184
186
|
/** The agent schedule policy. */
|
|
185
187
|
schedulePolicy?: InputMaybe<AgentSchedulePolicyInput>;
|
|
188
|
+
/** The agent scratchpad, for storing harness working memory. */
|
|
189
|
+
scratchpad?: InputMaybe<Scalars['String']['input']>;
|
|
186
190
|
/** The specification associated with this agent. */
|
|
187
191
|
specification?: InputMaybe<EntityReferenceInput>;
|
|
188
192
|
/** The agent timeout. */
|
|
@@ -236,6 +240,8 @@ export type AgentUpdateInput = {
|
|
|
236
240
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
237
241
|
/** The agent schedule policy. */
|
|
238
242
|
schedulePolicy?: InputMaybe<AgentSchedulePolicyInput>;
|
|
243
|
+
/** The agent scratchpad, for storing harness working memory. */
|
|
244
|
+
scratchpad?: InputMaybe<Scalars['String']['input']>;
|
|
239
245
|
/** The specification associated with this agent. */
|
|
240
246
|
specification?: InputMaybe<EntityReferenceInput>;
|
|
241
247
|
/** The agent timeout. */
|
|
@@ -22775,6 +22781,7 @@ export type GetAgentQuery = {
|
|
|
22775
22781
|
correlationId?: string | null;
|
|
22776
22782
|
type: AgentTypes;
|
|
22777
22783
|
timeout?: any | null;
|
|
22784
|
+
scratchpad?: string | null;
|
|
22778
22785
|
owner: {
|
|
22779
22786
|
__typename?: 'Owner';
|
|
22780
22787
|
id: string;
|
|
@@ -22931,6 +22938,7 @@ export type QueryAgentsQuery = {
|
|
|
22931
22938
|
correlationId?: string | null;
|
|
22932
22939
|
type: AgentTypes;
|
|
22933
22940
|
timeout?: any | null;
|
|
22941
|
+
scratchpad?: string | null;
|
|
22934
22942
|
owner: {
|
|
22935
22943
|
__typename?: 'Owner';
|
|
22936
22944
|
id: string;
|