@amigo-ai/platform-sdk 0.5.2 → 0.5.3
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/README.md +81 -7
- package/api.md +3 -0
- package/dist/index.cjs +42 -10
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +42 -10
- package/dist/index.mjs.map +2 -2
- package/dist/resources/base.js +7 -2
- package/dist/resources/base.js.map +1 -1
- package/dist/resources/operators.js.map +1 -1
- package/dist/resources/personas.js.map +1 -1
- package/dist/resources/webhook-destinations.js.map +1 -1
- package/dist/resources/workspaces.js +22 -0
- package/dist/resources/workspaces.js.map +1 -1
- package/dist/resources/world.js.map +1 -1
- package/dist/types/generated/api.d.ts +13373 -13213
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/resources/actions.d.ts +166 -166
- package/dist/types/resources/agents.d.ts +88 -88
- package/dist/types/resources/analytics.d.ts +39 -39
- package/dist/types/resources/api-keys.d.ts +29 -29
- package/dist/types/resources/audit.d.ts +73 -73
- package/dist/types/resources/base.d.ts.map +1 -1
- package/dist/types/resources/billing.d.ts +36 -36
- package/dist/types/resources/calls.d.ts +106 -106
- package/dist/types/resources/compliance.d.ts +17 -17
- package/dist/types/resources/context-graphs.d.ts +643 -643
- package/dist/types/resources/data-sources.d.ts +81 -81
- package/dist/types/resources/functions.d.ts +22 -22
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/integrations.d.ts +258 -258
- package/dist/types/resources/memory.d.ts +35 -35
- package/dist/types/resources/operators.d.ts +147 -147
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/personas.d.ts +37 -37
- package/dist/types/resources/personas.d.ts.map +1 -1
- package/dist/types/resources/phone-numbers.d.ts +62 -62
- package/dist/types/resources/recordings.d.ts +9 -9
- package/dist/types/resources/review-queue.d.ts +331 -331
- package/dist/types/resources/safety.d.ts +33 -33
- package/dist/types/resources/services.d.ts +142 -142
- package/dist/types/resources/settings.d.ts +254 -254
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/simulations.d.ts +73 -73
- package/dist/types/resources/skills.d.ts +163 -163
- package/dist/types/resources/triggers.d.ts +74 -74
- package/dist/types/resources/webhook-destinations.d.ts +57 -57
- package/dist/types/resources/webhook-destinations.d.ts.map +1 -1
- package/dist/types/resources/workspaces.d.ts +69 -35
- package/dist/types/resources/workspaces.d.ts.map +1 -1
- package/dist/types/resources/world.d.ts +216 -216
- package/dist/types/resources/world.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -12,1052 +12,1052 @@ export interface ListContextGraphsParams extends ListParams {
|
|
|
12
12
|
*/
|
|
13
13
|
export declare class ContextGraphsResource extends WorkspaceScopedResource {
|
|
14
14
|
create(body: components['schemas']['CreateContextGraphRequest']): Promise<{
|
|
15
|
-
created_at: string;
|
|
16
|
-
description: string;
|
|
17
15
|
id: string;
|
|
18
|
-
|
|
16
|
+
workspace_id: string;
|
|
19
17
|
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
latest_version?: number | undefined;
|
|
20
20
|
state_count?: number | undefined;
|
|
21
|
+
created_at: string;
|
|
21
22
|
updated_at: string;
|
|
22
|
-
workspace_id: string;
|
|
23
23
|
} & import("../index.js").ResponseMetadata>;
|
|
24
24
|
list(params?: ListContextGraphsParams): Promise<{
|
|
25
|
-
continuation_token?: number | null | undefined;
|
|
26
|
-
has_more: boolean;
|
|
27
25
|
items: {
|
|
28
|
-
created_at: string;
|
|
29
|
-
description: string;
|
|
30
26
|
id: string;
|
|
31
|
-
|
|
27
|
+
workspace_id: string;
|
|
32
28
|
name: string;
|
|
29
|
+
description: string;
|
|
30
|
+
latest_version?: number | undefined;
|
|
33
31
|
state_count?: number | undefined;
|
|
32
|
+
created_at: string;
|
|
34
33
|
updated_at: string;
|
|
35
|
-
workspace_id: string;
|
|
36
34
|
}[];
|
|
35
|
+
has_more: boolean;
|
|
36
|
+
continuation_token?: number | null | undefined;
|
|
37
37
|
total?: number | null | undefined;
|
|
38
38
|
} & import("../index.js").ResponseMetadata>;
|
|
39
39
|
listAutoPaging(params?: ListContextGraphsParams): AsyncGenerator<{
|
|
40
|
-
created_at: string;
|
|
41
|
-
description: string;
|
|
42
40
|
id: string;
|
|
43
|
-
|
|
41
|
+
workspace_id: string;
|
|
44
42
|
name: string;
|
|
43
|
+
description: string;
|
|
44
|
+
latest_version?: number | undefined;
|
|
45
45
|
state_count?: number | undefined;
|
|
46
|
+
created_at: string;
|
|
46
47
|
updated_at: string;
|
|
47
|
-
workspace_id: string;
|
|
48
48
|
}, any, any>;
|
|
49
49
|
get(contextGraphId: ContextGraphId | string): Promise<{
|
|
50
|
-
created_at: string;
|
|
51
|
-
description: string;
|
|
52
50
|
id: string;
|
|
53
|
-
|
|
51
|
+
workspace_id: string;
|
|
54
52
|
name: string;
|
|
53
|
+
description: string;
|
|
54
|
+
latest_version?: number | undefined;
|
|
55
55
|
state_count?: number | undefined;
|
|
56
|
+
created_at: string;
|
|
56
57
|
updated_at: string;
|
|
57
|
-
workspace_id: string;
|
|
58
58
|
} & import("../index.js").ResponseMetadata>;
|
|
59
59
|
update(contextGraphId: ContextGraphId | string, body: components['schemas']['UpdateContextGraphRequest']): Promise<{
|
|
60
|
-
created_at: string;
|
|
61
|
-
description: string;
|
|
62
60
|
id: string;
|
|
63
|
-
|
|
61
|
+
workspace_id: string;
|
|
64
62
|
name: string;
|
|
63
|
+
description: string;
|
|
64
|
+
latest_version?: number | undefined;
|
|
65
65
|
state_count?: number | undefined;
|
|
66
|
+
created_at: string;
|
|
66
67
|
updated_at: string;
|
|
67
|
-
workspace_id: string;
|
|
68
68
|
} & import("../index.js").ResponseMetadata>;
|
|
69
69
|
delete(contextGraphId: ContextGraphId | string): Promise<void>;
|
|
70
70
|
/** Create a version snapshot of the current context graph */
|
|
71
71
|
createVersion(contextGraphId: ContextGraphId | string, body: components['schemas']['CreateContextGraphVersionRequest']): Promise<{
|
|
72
|
+
id: string;
|
|
73
|
+
workspace_id: string;
|
|
72
74
|
context_graph_id: string;
|
|
73
|
-
|
|
75
|
+
version: number;
|
|
74
76
|
description: string;
|
|
75
|
-
global_action_guidelines: string[];
|
|
76
|
-
global_boundary_constraints: string[];
|
|
77
|
-
global_intra_state_navigation_guidelines: string[];
|
|
78
|
-
id: string;
|
|
79
|
-
new_user_initial_state: string;
|
|
80
|
-
returning_user_initial_state: string;
|
|
81
77
|
states: ({
|
|
78
|
+
type: "action";
|
|
79
|
+
name: string;
|
|
80
|
+
objective: string;
|
|
81
|
+
actions: {
|
|
82
|
+
description: string;
|
|
83
|
+
filler_hint?: string | null | undefined;
|
|
84
|
+
}[];
|
|
85
|
+
intra_state_navigation_guidelines: string[];
|
|
82
86
|
action_guidelines: string[];
|
|
87
|
+
boundary_constraints: string[];
|
|
88
|
+
exit_conditions: {
|
|
89
|
+
description: string;
|
|
90
|
+
next_state: string;
|
|
91
|
+
filler_hint?: string | null | undefined;
|
|
92
|
+
}[];
|
|
83
93
|
action_tool_call_specs?: {
|
|
94
|
+
tool_id: string;
|
|
84
95
|
additional_instruction?: string | undefined;
|
|
85
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
86
|
-
audio_fillers?: string[] | null | undefined;
|
|
87
96
|
navigate_on_completion?: boolean | undefined;
|
|
88
97
|
progress?: {
|
|
89
|
-
custom_phrase?: string | null | undefined;
|
|
90
98
|
deterministic?: boolean | undefined;
|
|
91
|
-
|
|
99
|
+
phrases?: string[] | null | undefined;
|
|
100
|
+
trigger_delay_ms?: number | null | undefined;
|
|
92
101
|
interval_ms?: number | null | undefined;
|
|
93
102
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
94
|
-
phrases?: string[] | null | undefined;
|
|
95
103
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
96
|
-
|
|
104
|
+
expected_latency_ms?: number | null | undefined;
|
|
105
|
+
custom_phrase?: string | null | undefined;
|
|
97
106
|
} | null | undefined;
|
|
98
|
-
|
|
107
|
+
audio_fillers?: string[] | null | undefined;
|
|
108
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
99
109
|
}[] | undefined;
|
|
100
|
-
actions: {
|
|
101
|
-
description: string;
|
|
102
|
-
filler_hint?: string | null | undefined;
|
|
103
|
-
}[];
|
|
104
|
-
boundary_constraints: string[];
|
|
105
|
-
channel_overrides?: {
|
|
106
|
-
[x: string]: {
|
|
107
|
-
action_guidelines?: string[] | undefined;
|
|
108
|
-
objective?: string | null | undefined;
|
|
109
|
-
progress?: {
|
|
110
|
-
custom_phrase?: string | null | undefined;
|
|
111
|
-
deterministic?: boolean | undefined;
|
|
112
|
-
expected_latency_ms?: number | null | undefined;
|
|
113
|
-
interval_ms?: number | null | undefined;
|
|
114
|
-
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
115
|
-
phrases?: string[] | null | undefined;
|
|
116
|
-
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
117
|
-
trigger_delay_ms?: number | null | undefined;
|
|
118
|
-
} | null | undefined;
|
|
119
|
-
};
|
|
120
|
-
} | undefined;
|
|
121
|
-
escalation_config?: {
|
|
122
|
-
auto_escalate_threshold?: number | null | undefined;
|
|
123
|
-
max_loop_count?: number | undefined;
|
|
124
|
-
operator_skill?: string | null | undefined;
|
|
125
|
-
topic_risk_score?: number | undefined;
|
|
126
|
-
} | null | undefined;
|
|
127
110
|
exit_condition_tool_call_specs?: {
|
|
111
|
+
tool_id: string;
|
|
128
112
|
additional_instruction?: string | undefined;
|
|
129
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
130
|
-
audio_fillers?: string[] | null | undefined;
|
|
131
113
|
navigate_on_completion?: boolean | undefined;
|
|
132
114
|
progress?: {
|
|
133
|
-
custom_phrase?: string | null | undefined;
|
|
134
115
|
deterministic?: boolean | undefined;
|
|
135
|
-
|
|
116
|
+
phrases?: string[] | null | undefined;
|
|
117
|
+
trigger_delay_ms?: number | null | undefined;
|
|
136
118
|
interval_ms?: number | null | undefined;
|
|
137
119
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
138
|
-
phrases?: string[] | null | undefined;
|
|
139
120
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
140
|
-
|
|
121
|
+
expected_latency_ms?: number | null | undefined;
|
|
122
|
+
custom_phrase?: string | null | undefined;
|
|
141
123
|
} | null | undefined;
|
|
142
|
-
|
|
124
|
+
audio_fillers?: string[] | null | undefined;
|
|
125
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
143
126
|
}[] | undefined;
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
127
|
+
escalation_config?: {
|
|
128
|
+
topic_risk_score?: number | undefined;
|
|
129
|
+
auto_escalate_threshold?: number | null | undefined;
|
|
130
|
+
max_loop_count?: number | undefined;
|
|
131
|
+
operator_skill?: string | null | undefined;
|
|
132
|
+
} | null | undefined;
|
|
133
|
+
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
149
134
|
guardrails?: {
|
|
135
|
+
name: string;
|
|
150
136
|
description: string;
|
|
151
137
|
enforcement?: "hard" | "soft" | undefined;
|
|
152
|
-
name: string;
|
|
153
138
|
}[] | undefined;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
139
|
+
channel_overrides?: {
|
|
140
|
+
[x: string]: {
|
|
141
|
+
objective?: string | null | undefined;
|
|
142
|
+
action_guidelines?: string[] | undefined;
|
|
143
|
+
progress?: {
|
|
144
|
+
deterministic?: boolean | undefined;
|
|
145
|
+
phrases?: string[] | null | undefined;
|
|
146
|
+
trigger_delay_ms?: number | null | undefined;
|
|
147
|
+
interval_ms?: number | null | undefined;
|
|
148
|
+
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
149
|
+
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
150
|
+
expected_latency_ms?: number | null | undefined;
|
|
151
|
+
custom_phrase?: string | null | undefined;
|
|
152
|
+
} | null | undefined;
|
|
153
|
+
};
|
|
154
|
+
} | undefined;
|
|
157
155
|
surface_spec_template?: {
|
|
158
156
|
[x: string]: unknown;
|
|
159
157
|
} | null | undefined;
|
|
160
158
|
turn_policy?: {
|
|
161
159
|
barge_in_enabled?: boolean | undefined;
|
|
162
|
-
block_forward_call?: boolean | undefined;
|
|
163
|
-
block_forward_call_after_turns?: number | undefined;
|
|
164
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
165
|
-
degradation_threshold?: number | undefined;
|
|
166
160
|
greeting_shield_s?: number | undefined;
|
|
167
161
|
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
168
|
-
|
|
162
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
163
|
+
degradation_threshold?: number | undefined;
|
|
164
|
+
block_forward_call?: boolean | undefined;
|
|
165
|
+
block_forward_call_after_turns?: number | undefined;
|
|
169
166
|
stt_eot_threshold?: number | null | undefined;
|
|
167
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
170
168
|
stt_eot_timeout_ms?: number | null | undefined;
|
|
171
169
|
} | null | undefined;
|
|
172
|
-
type: "action";
|
|
173
|
-
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
174
170
|
} | {
|
|
175
|
-
|
|
171
|
+
type: "annotation";
|
|
176
172
|
name: string;
|
|
173
|
+
inner_thought: string;
|
|
177
174
|
next_state: string;
|
|
178
|
-
type: "annotation";
|
|
179
175
|
} | {
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
objective?: string | null | undefined;
|
|
184
|
-
progress?: {
|
|
185
|
-
custom_phrase?: string | null | undefined;
|
|
186
|
-
deterministic?: boolean | undefined;
|
|
187
|
-
expected_latency_ms?: number | null | undefined;
|
|
188
|
-
interval_ms?: number | null | undefined;
|
|
189
|
-
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
190
|
-
phrases?: string[] | null | undefined;
|
|
191
|
-
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
192
|
-
trigger_delay_ms?: number | null | undefined;
|
|
193
|
-
} | null | undefined;
|
|
194
|
-
};
|
|
195
|
-
} | undefined;
|
|
196
|
-
decision_guidelines?: string[] | undefined;
|
|
176
|
+
type: "decision";
|
|
177
|
+
name: string;
|
|
178
|
+
objective: string;
|
|
197
179
|
exit_conditions: {
|
|
198
180
|
description: string;
|
|
199
|
-
filler_hint?: string | null | undefined;
|
|
200
181
|
next_state: string;
|
|
182
|
+
filler_hint?: string | null | undefined;
|
|
201
183
|
}[];
|
|
202
|
-
|
|
203
|
-
description: string;
|
|
204
|
-
enforcement?: "hard" | "soft" | undefined;
|
|
205
|
-
name: string;
|
|
206
|
-
}[] | undefined;
|
|
207
|
-
name: string;
|
|
208
|
-
objective: string;
|
|
184
|
+
decision_guidelines?: string[] | undefined;
|
|
209
185
|
tool_call_specs?: {
|
|
186
|
+
tool_id: string;
|
|
210
187
|
additional_instruction?: string | undefined;
|
|
211
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
212
|
-
audio_fillers?: string[] | null | undefined;
|
|
213
188
|
navigate_on_completion?: boolean | undefined;
|
|
214
189
|
progress?: {
|
|
215
|
-
custom_phrase?: string | null | undefined;
|
|
216
190
|
deterministic?: boolean | undefined;
|
|
217
|
-
|
|
191
|
+
phrases?: string[] | null | undefined;
|
|
192
|
+
trigger_delay_ms?: number | null | undefined;
|
|
218
193
|
interval_ms?: number | null | undefined;
|
|
219
194
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
220
|
-
phrases?: string[] | null | undefined;
|
|
221
195
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
222
|
-
|
|
196
|
+
expected_latency_ms?: number | null | undefined;
|
|
197
|
+
custom_phrase?: string | null | undefined;
|
|
223
198
|
} | null | undefined;
|
|
224
|
-
|
|
199
|
+
audio_fillers?: string[] | null | undefined;
|
|
200
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
225
201
|
}[] | undefined;
|
|
226
|
-
turn_policy?: {
|
|
227
|
-
barge_in_enabled?: boolean | undefined;
|
|
228
|
-
block_forward_call?: boolean | undefined;
|
|
229
|
-
block_forward_call_after_turns?: number | undefined;
|
|
230
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
231
|
-
degradation_threshold?: number | undefined;
|
|
232
|
-
greeting_shield_s?: number | undefined;
|
|
233
|
-
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
234
|
-
stt_eager_eot_threshold?: number | null | undefined;
|
|
235
|
-
stt_eot_threshold?: number | null | undefined;
|
|
236
|
-
stt_eot_timeout_ms?: number | null | undefined;
|
|
237
|
-
} | null | undefined;
|
|
238
|
-
type: "decision";
|
|
239
202
|
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
203
|
+
guardrails?: {
|
|
204
|
+
name: string;
|
|
205
|
+
description: string;
|
|
206
|
+
enforcement?: "hard" | "soft" | undefined;
|
|
207
|
+
}[] | undefined;
|
|
243
208
|
channel_overrides?: {
|
|
244
209
|
[x: string]: {
|
|
245
|
-
action_guidelines?: string[] | undefined;
|
|
246
210
|
objective?: string | null | undefined;
|
|
211
|
+
action_guidelines?: string[] | undefined;
|
|
247
212
|
progress?: {
|
|
248
|
-
custom_phrase?: string | null | undefined;
|
|
249
213
|
deterministic?: boolean | undefined;
|
|
250
|
-
|
|
214
|
+
phrases?: string[] | null | undefined;
|
|
215
|
+
trigger_delay_ms?: number | null | undefined;
|
|
251
216
|
interval_ms?: number | null | undefined;
|
|
252
217
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
253
|
-
phrases?: string[] | null | undefined;
|
|
254
218
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
255
|
-
|
|
219
|
+
expected_latency_ms?: number | null | undefined;
|
|
220
|
+
custom_phrase?: string | null | undefined;
|
|
256
221
|
} | null | undefined;
|
|
257
222
|
};
|
|
258
223
|
} | undefined;
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
}[] | undefined;
|
|
274
|
-
max_turns?: number | undefined;
|
|
224
|
+
turn_policy?: {
|
|
225
|
+
barge_in_enabled?: boolean | undefined;
|
|
226
|
+
greeting_shield_s?: number | undefined;
|
|
227
|
+
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
228
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
229
|
+
degradation_threshold?: number | undefined;
|
|
230
|
+
block_forward_call?: boolean | undefined;
|
|
231
|
+
block_forward_call_after_turns?: number | undefined;
|
|
232
|
+
stt_eot_threshold?: number | null | undefined;
|
|
233
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
234
|
+
stt_eot_timeout_ms?: number | null | undefined;
|
|
235
|
+
} | null | undefined;
|
|
236
|
+
} | {
|
|
237
|
+
type: "data_collection";
|
|
275
238
|
name: string;
|
|
276
239
|
objective: string;
|
|
240
|
+
fields: {
|
|
241
|
+
key: string;
|
|
242
|
+
type: string;
|
|
243
|
+
label: string;
|
|
244
|
+
required?: boolean | undefined;
|
|
245
|
+
options?: string[] | null | undefined;
|
|
246
|
+
validation?: string | null | undefined;
|
|
247
|
+
ask_prompt?: string | null | undefined;
|
|
248
|
+
fhir_path?: string | null | undefined;
|
|
249
|
+
}[];
|
|
277
250
|
on_complete: string;
|
|
251
|
+
action_guidelines?: string[] | undefined;
|
|
252
|
+
boundary_constraints?: string[] | undefined;
|
|
278
253
|
surface_fallback?: boolean | undefined;
|
|
279
254
|
surface_fallback_after_turns?: number | undefined;
|
|
255
|
+
max_turns?: number | undefined;
|
|
256
|
+
guardrails?: {
|
|
257
|
+
name: string;
|
|
258
|
+
description: string;
|
|
259
|
+
enforcement?: "hard" | "soft" | undefined;
|
|
260
|
+
}[] | undefined;
|
|
261
|
+
channel_overrides?: {
|
|
262
|
+
[x: string]: {
|
|
263
|
+
objective?: string | null | undefined;
|
|
264
|
+
action_guidelines?: string[] | undefined;
|
|
265
|
+
progress?: {
|
|
266
|
+
deterministic?: boolean | undefined;
|
|
267
|
+
phrases?: string[] | null | undefined;
|
|
268
|
+
trigger_delay_ms?: number | null | undefined;
|
|
269
|
+
interval_ms?: number | null | undefined;
|
|
270
|
+
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
271
|
+
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
272
|
+
expected_latency_ms?: number | null | undefined;
|
|
273
|
+
custom_phrase?: string | null | undefined;
|
|
274
|
+
} | null | undefined;
|
|
275
|
+
};
|
|
276
|
+
} | undefined;
|
|
277
|
+
turn_policy?: {
|
|
278
|
+
barge_in_enabled?: boolean | undefined;
|
|
279
|
+
greeting_shield_s?: number | undefined;
|
|
280
|
+
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
281
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
282
|
+
degradation_threshold?: number | undefined;
|
|
283
|
+
block_forward_call?: boolean | undefined;
|
|
284
|
+
block_forward_call_after_turns?: number | undefined;
|
|
285
|
+
stt_eot_threshold?: number | null | undefined;
|
|
286
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
287
|
+
stt_eot_timeout_ms?: number | null | undefined;
|
|
288
|
+
} | null | undefined;
|
|
280
289
|
tool_call_specs?: {
|
|
290
|
+
tool_id: string;
|
|
281
291
|
additional_instruction?: string | undefined;
|
|
282
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
283
|
-
audio_fillers?: string[] | null | undefined;
|
|
284
292
|
navigate_on_completion?: boolean | undefined;
|
|
285
293
|
progress?: {
|
|
286
|
-
custom_phrase?: string | null | undefined;
|
|
287
294
|
deterministic?: boolean | undefined;
|
|
288
|
-
|
|
295
|
+
phrases?: string[] | null | undefined;
|
|
296
|
+
trigger_delay_ms?: number | null | undefined;
|
|
289
297
|
interval_ms?: number | null | undefined;
|
|
290
298
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
291
|
-
phrases?: string[] | null | undefined;
|
|
292
299
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
293
|
-
|
|
300
|
+
expected_latency_ms?: number | null | undefined;
|
|
301
|
+
custom_phrase?: string | null | undefined;
|
|
294
302
|
} | null | undefined;
|
|
295
|
-
|
|
303
|
+
audio_fillers?: string[] | null | undefined;
|
|
304
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
296
305
|
}[] | undefined;
|
|
297
|
-
turn_policy?: {
|
|
298
|
-
barge_in_enabled?: boolean | undefined;
|
|
299
|
-
block_forward_call?: boolean | undefined;
|
|
300
|
-
block_forward_call_after_turns?: number | undefined;
|
|
301
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
302
|
-
degradation_threshold?: number | undefined;
|
|
303
|
-
greeting_shield_s?: number | undefined;
|
|
304
|
-
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
305
|
-
stt_eager_eot_threshold?: number | null | undefined;
|
|
306
|
-
stt_eot_threshold?: number | null | undefined;
|
|
307
|
-
stt_eot_timeout_ms?: number | null | undefined;
|
|
308
|
-
} | null | undefined;
|
|
309
|
-
type: "data_collection";
|
|
310
306
|
})[];
|
|
307
|
+
new_user_initial_state: string;
|
|
308
|
+
returning_user_initial_state: string;
|
|
311
309
|
terminal_state: string;
|
|
310
|
+
global_intra_state_navigation_guidelines: string[];
|
|
311
|
+
global_action_guidelines: string[];
|
|
312
|
+
global_boundary_constraints: string[];
|
|
312
313
|
topology_description: string | null;
|
|
314
|
+
created_at: string;
|
|
313
315
|
updated_at: string;
|
|
314
|
-
version: number;
|
|
315
|
-
workspace_id: string;
|
|
316
316
|
} & import("../index.js").ResponseMetadata>;
|
|
317
317
|
/** List all versions of a context graph */
|
|
318
318
|
listVersions(contextGraphId: ContextGraphId | string, params?: ListParams): Promise<{
|
|
319
|
-
continuation_token?: number | null | undefined;
|
|
320
|
-
has_more: boolean;
|
|
321
319
|
items: {
|
|
320
|
+
id: string;
|
|
321
|
+
workspace_id: string;
|
|
322
322
|
context_graph_id: string;
|
|
323
|
-
|
|
323
|
+
version: number;
|
|
324
324
|
description: string;
|
|
325
|
-
global_action_guidelines: string[];
|
|
326
|
-
global_boundary_constraints: string[];
|
|
327
|
-
global_intra_state_navigation_guidelines: string[];
|
|
328
|
-
id: string;
|
|
329
|
-
new_user_initial_state: string;
|
|
330
|
-
returning_user_initial_state: string;
|
|
331
325
|
states: ({
|
|
326
|
+
type: "action";
|
|
327
|
+
name: string;
|
|
328
|
+
objective: string;
|
|
329
|
+
actions: {
|
|
330
|
+
description: string;
|
|
331
|
+
filler_hint?: string | null | undefined;
|
|
332
|
+
}[];
|
|
333
|
+
intra_state_navigation_guidelines: string[];
|
|
332
334
|
action_guidelines: string[];
|
|
335
|
+
boundary_constraints: string[];
|
|
336
|
+
exit_conditions: {
|
|
337
|
+
description: string;
|
|
338
|
+
next_state: string;
|
|
339
|
+
filler_hint?: string | null | undefined;
|
|
340
|
+
}[];
|
|
333
341
|
action_tool_call_specs?: {
|
|
342
|
+
tool_id: string;
|
|
334
343
|
additional_instruction?: string | undefined;
|
|
335
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
336
|
-
audio_fillers?: string[] | null | undefined;
|
|
337
344
|
navigate_on_completion?: boolean | undefined;
|
|
338
345
|
progress?: {
|
|
339
|
-
custom_phrase?: string | null | undefined;
|
|
340
346
|
deterministic?: boolean | undefined;
|
|
341
|
-
|
|
347
|
+
phrases?: string[] | null | undefined;
|
|
348
|
+
trigger_delay_ms?: number | null | undefined;
|
|
342
349
|
interval_ms?: number | null | undefined;
|
|
343
350
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
344
|
-
phrases?: string[] | null | undefined;
|
|
345
351
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
346
|
-
|
|
352
|
+
expected_latency_ms?: number | null | undefined;
|
|
353
|
+
custom_phrase?: string | null | undefined;
|
|
347
354
|
} | null | undefined;
|
|
348
|
-
|
|
355
|
+
audio_fillers?: string[] | null | undefined;
|
|
356
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
349
357
|
}[] | undefined;
|
|
350
|
-
actions: {
|
|
351
|
-
description: string;
|
|
352
|
-
filler_hint?: string | null | undefined;
|
|
353
|
-
}[];
|
|
354
|
-
boundary_constraints: string[];
|
|
355
|
-
channel_overrides?: {
|
|
356
|
-
[x: string]: {
|
|
357
|
-
action_guidelines?: string[] | undefined;
|
|
358
|
-
objective?: string | null | undefined;
|
|
359
|
-
progress?: {
|
|
360
|
-
custom_phrase?: string | null | undefined;
|
|
361
|
-
deterministic?: boolean | undefined;
|
|
362
|
-
expected_latency_ms?: number | null | undefined;
|
|
363
|
-
interval_ms?: number | null | undefined;
|
|
364
|
-
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
365
|
-
phrases?: string[] | null | undefined;
|
|
366
|
-
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
367
|
-
trigger_delay_ms?: number | null | undefined;
|
|
368
|
-
} | null | undefined;
|
|
369
|
-
};
|
|
370
|
-
} | undefined;
|
|
371
|
-
escalation_config?: {
|
|
372
|
-
auto_escalate_threshold?: number | null | undefined;
|
|
373
|
-
max_loop_count?: number | undefined;
|
|
374
|
-
operator_skill?: string | null | undefined;
|
|
375
|
-
topic_risk_score?: number | undefined;
|
|
376
|
-
} | null | undefined;
|
|
377
358
|
exit_condition_tool_call_specs?: {
|
|
359
|
+
tool_id: string;
|
|
378
360
|
additional_instruction?: string | undefined;
|
|
379
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
380
|
-
audio_fillers?: string[] | null | undefined;
|
|
381
361
|
navigate_on_completion?: boolean | undefined;
|
|
382
362
|
progress?: {
|
|
383
|
-
custom_phrase?: string | null | undefined;
|
|
384
363
|
deterministic?: boolean | undefined;
|
|
385
|
-
|
|
364
|
+
phrases?: string[] | null | undefined;
|
|
365
|
+
trigger_delay_ms?: number | null | undefined;
|
|
386
366
|
interval_ms?: number | null | undefined;
|
|
387
367
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
388
|
-
phrases?: string[] | null | undefined;
|
|
389
368
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
390
|
-
|
|
369
|
+
expected_latency_ms?: number | null | undefined;
|
|
370
|
+
custom_phrase?: string | null | undefined;
|
|
391
371
|
} | null | undefined;
|
|
392
|
-
|
|
372
|
+
audio_fillers?: string[] | null | undefined;
|
|
373
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
393
374
|
}[] | undefined;
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
375
|
+
escalation_config?: {
|
|
376
|
+
topic_risk_score?: number | undefined;
|
|
377
|
+
auto_escalate_threshold?: number | null | undefined;
|
|
378
|
+
max_loop_count?: number | undefined;
|
|
379
|
+
operator_skill?: string | null | undefined;
|
|
380
|
+
} | null | undefined;
|
|
381
|
+
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
399
382
|
guardrails?: {
|
|
383
|
+
name: string;
|
|
400
384
|
description: string;
|
|
401
385
|
enforcement?: "hard" | "soft" | undefined;
|
|
402
|
-
name: string;
|
|
403
386
|
}[] | undefined;
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
387
|
+
channel_overrides?: {
|
|
388
|
+
[x: string]: {
|
|
389
|
+
objective?: string | null | undefined;
|
|
390
|
+
action_guidelines?: string[] | undefined;
|
|
391
|
+
progress?: {
|
|
392
|
+
deterministic?: boolean | undefined;
|
|
393
|
+
phrases?: string[] | null | undefined;
|
|
394
|
+
trigger_delay_ms?: number | null | undefined;
|
|
395
|
+
interval_ms?: number | null | undefined;
|
|
396
|
+
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
397
|
+
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
398
|
+
expected_latency_ms?: number | null | undefined;
|
|
399
|
+
custom_phrase?: string | null | undefined;
|
|
400
|
+
} | null | undefined;
|
|
401
|
+
};
|
|
402
|
+
} | undefined;
|
|
407
403
|
surface_spec_template?: {
|
|
408
404
|
[x: string]: unknown;
|
|
409
405
|
} | null | undefined;
|
|
410
406
|
turn_policy?: {
|
|
411
407
|
barge_in_enabled?: boolean | undefined;
|
|
412
|
-
block_forward_call?: boolean | undefined;
|
|
413
|
-
block_forward_call_after_turns?: number | undefined;
|
|
414
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
415
|
-
degradation_threshold?: number | undefined;
|
|
416
408
|
greeting_shield_s?: number | undefined;
|
|
417
409
|
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
418
|
-
|
|
410
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
411
|
+
degradation_threshold?: number | undefined;
|
|
412
|
+
block_forward_call?: boolean | undefined;
|
|
413
|
+
block_forward_call_after_turns?: number | undefined;
|
|
419
414
|
stt_eot_threshold?: number | null | undefined;
|
|
415
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
420
416
|
stt_eot_timeout_ms?: number | null | undefined;
|
|
421
417
|
} | null | undefined;
|
|
422
|
-
type: "action";
|
|
423
|
-
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
424
418
|
} | {
|
|
425
|
-
|
|
419
|
+
type: "annotation";
|
|
426
420
|
name: string;
|
|
421
|
+
inner_thought: string;
|
|
427
422
|
next_state: string;
|
|
428
|
-
type: "annotation";
|
|
429
423
|
} | {
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
objective?: string | null | undefined;
|
|
434
|
-
progress?: {
|
|
435
|
-
custom_phrase?: string | null | undefined;
|
|
436
|
-
deterministic?: boolean | undefined;
|
|
437
|
-
expected_latency_ms?: number | null | undefined;
|
|
438
|
-
interval_ms?: number | null | undefined;
|
|
439
|
-
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
440
|
-
phrases?: string[] | null | undefined;
|
|
441
|
-
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
442
|
-
trigger_delay_ms?: number | null | undefined;
|
|
443
|
-
} | null | undefined;
|
|
444
|
-
};
|
|
445
|
-
} | undefined;
|
|
446
|
-
decision_guidelines?: string[] | undefined;
|
|
424
|
+
type: "decision";
|
|
425
|
+
name: string;
|
|
426
|
+
objective: string;
|
|
447
427
|
exit_conditions: {
|
|
448
428
|
description: string;
|
|
449
|
-
filler_hint?: string | null | undefined;
|
|
450
429
|
next_state: string;
|
|
430
|
+
filler_hint?: string | null | undefined;
|
|
451
431
|
}[];
|
|
452
|
-
|
|
453
|
-
description: string;
|
|
454
|
-
enforcement?: "hard" | "soft" | undefined;
|
|
455
|
-
name: string;
|
|
456
|
-
}[] | undefined;
|
|
457
|
-
name: string;
|
|
458
|
-
objective: string;
|
|
432
|
+
decision_guidelines?: string[] | undefined;
|
|
459
433
|
tool_call_specs?: {
|
|
434
|
+
tool_id: string;
|
|
460
435
|
additional_instruction?: string | undefined;
|
|
461
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
462
|
-
audio_fillers?: string[] | null | undefined;
|
|
463
436
|
navigate_on_completion?: boolean | undefined;
|
|
464
437
|
progress?: {
|
|
465
|
-
custom_phrase?: string | null | undefined;
|
|
466
438
|
deterministic?: boolean | undefined;
|
|
467
|
-
|
|
439
|
+
phrases?: string[] | null | undefined;
|
|
440
|
+
trigger_delay_ms?: number | null | undefined;
|
|
468
441
|
interval_ms?: number | null | undefined;
|
|
469
442
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
470
|
-
phrases?: string[] | null | undefined;
|
|
471
443
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
472
|
-
|
|
444
|
+
expected_latency_ms?: number | null | undefined;
|
|
445
|
+
custom_phrase?: string | null | undefined;
|
|
473
446
|
} | null | undefined;
|
|
474
|
-
|
|
447
|
+
audio_fillers?: string[] | null | undefined;
|
|
448
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
475
449
|
}[] | undefined;
|
|
476
|
-
turn_policy?: {
|
|
477
|
-
barge_in_enabled?: boolean | undefined;
|
|
478
|
-
block_forward_call?: boolean | undefined;
|
|
479
|
-
block_forward_call_after_turns?: number | undefined;
|
|
480
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
481
|
-
degradation_threshold?: number | undefined;
|
|
482
|
-
greeting_shield_s?: number | undefined;
|
|
483
|
-
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
484
|
-
stt_eager_eot_threshold?: number | null | undefined;
|
|
485
|
-
stt_eot_threshold?: number | null | undefined;
|
|
486
|
-
stt_eot_timeout_ms?: number | null | undefined;
|
|
487
|
-
} | null | undefined;
|
|
488
|
-
type: "decision";
|
|
489
450
|
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
451
|
+
guardrails?: {
|
|
452
|
+
name: string;
|
|
453
|
+
description: string;
|
|
454
|
+
enforcement?: "hard" | "soft" | undefined;
|
|
455
|
+
}[] | undefined;
|
|
493
456
|
channel_overrides?: {
|
|
494
457
|
[x: string]: {
|
|
495
|
-
action_guidelines?: string[] | undefined;
|
|
496
458
|
objective?: string | null | undefined;
|
|
459
|
+
action_guidelines?: string[] | undefined;
|
|
497
460
|
progress?: {
|
|
498
|
-
custom_phrase?: string | null | undefined;
|
|
499
461
|
deterministic?: boolean | undefined;
|
|
500
|
-
|
|
462
|
+
phrases?: string[] | null | undefined;
|
|
463
|
+
trigger_delay_ms?: number | null | undefined;
|
|
501
464
|
interval_ms?: number | null | undefined;
|
|
502
465
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
503
|
-
phrases?: string[] | null | undefined;
|
|
504
466
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
505
|
-
|
|
467
|
+
expected_latency_ms?: number | null | undefined;
|
|
468
|
+
custom_phrase?: string | null | undefined;
|
|
506
469
|
} | null | undefined;
|
|
507
470
|
};
|
|
508
471
|
} | undefined;
|
|
472
|
+
turn_policy?: {
|
|
473
|
+
barge_in_enabled?: boolean | undefined;
|
|
474
|
+
greeting_shield_s?: number | undefined;
|
|
475
|
+
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
476
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
477
|
+
degradation_threshold?: number | undefined;
|
|
478
|
+
block_forward_call?: boolean | undefined;
|
|
479
|
+
block_forward_call_after_turns?: number | undefined;
|
|
480
|
+
stt_eot_threshold?: number | null | undefined;
|
|
481
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
482
|
+
stt_eot_timeout_ms?: number | null | undefined;
|
|
483
|
+
} | null | undefined;
|
|
484
|
+
} | {
|
|
485
|
+
type: "data_collection";
|
|
486
|
+
name: string;
|
|
487
|
+
objective: string;
|
|
509
488
|
fields: {
|
|
510
|
-
ask_prompt?: string | null | undefined;
|
|
511
|
-
fhir_path?: string | null | undefined;
|
|
512
489
|
key: string;
|
|
490
|
+
type: string;
|
|
513
491
|
label: string;
|
|
514
|
-
options?: string[] | null | undefined;
|
|
515
492
|
required?: boolean | undefined;
|
|
516
|
-
|
|
493
|
+
options?: string[] | null | undefined;
|
|
517
494
|
validation?: string | null | undefined;
|
|
495
|
+
ask_prompt?: string | null | undefined;
|
|
496
|
+
fhir_path?: string | null | undefined;
|
|
518
497
|
}[];
|
|
498
|
+
on_complete: string;
|
|
499
|
+
action_guidelines?: string[] | undefined;
|
|
500
|
+
boundary_constraints?: string[] | undefined;
|
|
501
|
+
surface_fallback?: boolean | undefined;
|
|
502
|
+
surface_fallback_after_turns?: number | undefined;
|
|
503
|
+
max_turns?: number | undefined;
|
|
519
504
|
guardrails?: {
|
|
505
|
+
name: string;
|
|
520
506
|
description: string;
|
|
521
507
|
enforcement?: "hard" | "soft" | undefined;
|
|
522
|
-
name: string;
|
|
523
508
|
}[] | undefined;
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
509
|
+
channel_overrides?: {
|
|
510
|
+
[x: string]: {
|
|
511
|
+
objective?: string | null | undefined;
|
|
512
|
+
action_guidelines?: string[] | undefined;
|
|
513
|
+
progress?: {
|
|
514
|
+
deterministic?: boolean | undefined;
|
|
515
|
+
phrases?: string[] | null | undefined;
|
|
516
|
+
trigger_delay_ms?: number | null | undefined;
|
|
517
|
+
interval_ms?: number | null | undefined;
|
|
518
|
+
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
519
|
+
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
520
|
+
expected_latency_ms?: number | null | undefined;
|
|
521
|
+
custom_phrase?: string | null | undefined;
|
|
522
|
+
} | null | undefined;
|
|
523
|
+
};
|
|
524
|
+
} | undefined;
|
|
525
|
+
turn_policy?: {
|
|
526
|
+
barge_in_enabled?: boolean | undefined;
|
|
527
|
+
greeting_shield_s?: number | undefined;
|
|
528
|
+
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
529
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
530
|
+
degradation_threshold?: number | undefined;
|
|
531
|
+
block_forward_call?: boolean | undefined;
|
|
532
|
+
block_forward_call_after_turns?: number | undefined;
|
|
533
|
+
stt_eot_threshold?: number | null | undefined;
|
|
534
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
535
|
+
stt_eot_timeout_ms?: number | null | undefined;
|
|
536
|
+
} | null | undefined;
|
|
530
537
|
tool_call_specs?: {
|
|
538
|
+
tool_id: string;
|
|
531
539
|
additional_instruction?: string | undefined;
|
|
532
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
533
|
-
audio_fillers?: string[] | null | undefined;
|
|
534
540
|
navigate_on_completion?: boolean | undefined;
|
|
535
541
|
progress?: {
|
|
536
|
-
custom_phrase?: string | null | undefined;
|
|
537
542
|
deterministic?: boolean | undefined;
|
|
538
|
-
|
|
543
|
+
phrases?: string[] | null | undefined;
|
|
544
|
+
trigger_delay_ms?: number | null | undefined;
|
|
539
545
|
interval_ms?: number | null | undefined;
|
|
540
546
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
541
|
-
phrases?: string[] | null | undefined;
|
|
542
547
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
543
|
-
|
|
548
|
+
expected_latency_ms?: number | null | undefined;
|
|
549
|
+
custom_phrase?: string | null | undefined;
|
|
544
550
|
} | null | undefined;
|
|
545
|
-
|
|
551
|
+
audio_fillers?: string[] | null | undefined;
|
|
552
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
546
553
|
}[] | undefined;
|
|
547
|
-
turn_policy?: {
|
|
548
|
-
barge_in_enabled?: boolean | undefined;
|
|
549
|
-
block_forward_call?: boolean | undefined;
|
|
550
|
-
block_forward_call_after_turns?: number | undefined;
|
|
551
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
552
|
-
degradation_threshold?: number | undefined;
|
|
553
|
-
greeting_shield_s?: number | undefined;
|
|
554
|
-
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
555
|
-
stt_eager_eot_threshold?: number | null | undefined;
|
|
556
|
-
stt_eot_threshold?: number | null | undefined;
|
|
557
|
-
stt_eot_timeout_ms?: number | null | undefined;
|
|
558
|
-
} | null | undefined;
|
|
559
|
-
type: "data_collection";
|
|
560
554
|
})[];
|
|
555
|
+
new_user_initial_state: string;
|
|
556
|
+
returning_user_initial_state: string;
|
|
561
557
|
terminal_state: string;
|
|
558
|
+
global_intra_state_navigation_guidelines: string[];
|
|
559
|
+
global_action_guidelines: string[];
|
|
560
|
+
global_boundary_constraints: string[];
|
|
562
561
|
topology_description: string | null;
|
|
562
|
+
created_at: string;
|
|
563
563
|
updated_at: string;
|
|
564
|
-
version: number;
|
|
565
|
-
workspace_id: string;
|
|
566
564
|
}[];
|
|
565
|
+
has_more: boolean;
|
|
566
|
+
continuation_token?: number | null | undefined;
|
|
567
567
|
total?: number | null | undefined;
|
|
568
568
|
} & import("../index.js").ResponseMetadata>;
|
|
569
569
|
listVersionsAutoPaging(contextGraphId: ContextGraphId | string, params?: ListParams): AsyncGenerator<{
|
|
570
|
+
id: string;
|
|
571
|
+
workspace_id: string;
|
|
570
572
|
context_graph_id: string;
|
|
571
|
-
|
|
573
|
+
version: number;
|
|
572
574
|
description: string;
|
|
573
|
-
global_action_guidelines: string[];
|
|
574
|
-
global_boundary_constraints: string[];
|
|
575
|
-
global_intra_state_navigation_guidelines: string[];
|
|
576
|
-
id: string;
|
|
577
|
-
new_user_initial_state: string;
|
|
578
|
-
returning_user_initial_state: string;
|
|
579
575
|
states: ({
|
|
576
|
+
type: "action";
|
|
577
|
+
name: string;
|
|
578
|
+
objective: string;
|
|
579
|
+
actions: {
|
|
580
|
+
description: string;
|
|
581
|
+
filler_hint?: string | null | undefined;
|
|
582
|
+
}[];
|
|
583
|
+
intra_state_navigation_guidelines: string[];
|
|
580
584
|
action_guidelines: string[];
|
|
585
|
+
boundary_constraints: string[];
|
|
586
|
+
exit_conditions: {
|
|
587
|
+
description: string;
|
|
588
|
+
next_state: string;
|
|
589
|
+
filler_hint?: string | null | undefined;
|
|
590
|
+
}[];
|
|
581
591
|
action_tool_call_specs?: {
|
|
592
|
+
tool_id: string;
|
|
582
593
|
additional_instruction?: string | undefined;
|
|
583
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
584
|
-
audio_fillers?: string[] | null | undefined;
|
|
585
594
|
navigate_on_completion?: boolean | undefined;
|
|
586
595
|
progress?: {
|
|
587
|
-
custom_phrase?: string | null | undefined;
|
|
588
596
|
deterministic?: boolean | undefined;
|
|
589
|
-
|
|
597
|
+
phrases?: string[] | null | undefined;
|
|
598
|
+
trigger_delay_ms?: number | null | undefined;
|
|
590
599
|
interval_ms?: number | null | undefined;
|
|
591
600
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
592
|
-
phrases?: string[] | null | undefined;
|
|
593
601
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
594
|
-
|
|
602
|
+
expected_latency_ms?: number | null | undefined;
|
|
603
|
+
custom_phrase?: string | null | undefined;
|
|
595
604
|
} | null | undefined;
|
|
596
|
-
|
|
605
|
+
audio_fillers?: string[] | null | undefined;
|
|
606
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
597
607
|
}[] | undefined;
|
|
598
|
-
actions: {
|
|
599
|
-
description: string;
|
|
600
|
-
filler_hint?: string | null | undefined;
|
|
601
|
-
}[];
|
|
602
|
-
boundary_constraints: string[];
|
|
603
|
-
channel_overrides?: {
|
|
604
|
-
[x: string]: {
|
|
605
|
-
action_guidelines?: string[] | undefined;
|
|
606
|
-
objective?: string | null | undefined;
|
|
607
|
-
progress?: {
|
|
608
|
-
custom_phrase?: string | null | undefined;
|
|
609
|
-
deterministic?: boolean | undefined;
|
|
610
|
-
expected_latency_ms?: number | null | undefined;
|
|
611
|
-
interval_ms?: number | null | undefined;
|
|
612
|
-
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
613
|
-
phrases?: string[] | null | undefined;
|
|
614
|
-
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
615
|
-
trigger_delay_ms?: number | null | undefined;
|
|
616
|
-
} | null | undefined;
|
|
617
|
-
};
|
|
618
|
-
} | undefined;
|
|
619
|
-
escalation_config?: {
|
|
620
|
-
auto_escalate_threshold?: number | null | undefined;
|
|
621
|
-
max_loop_count?: number | undefined;
|
|
622
|
-
operator_skill?: string | null | undefined;
|
|
623
|
-
topic_risk_score?: number | undefined;
|
|
624
|
-
} | null | undefined;
|
|
625
608
|
exit_condition_tool_call_specs?: {
|
|
609
|
+
tool_id: string;
|
|
626
610
|
additional_instruction?: string | undefined;
|
|
627
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
628
|
-
audio_fillers?: string[] | null | undefined;
|
|
629
611
|
navigate_on_completion?: boolean | undefined;
|
|
630
612
|
progress?: {
|
|
631
|
-
custom_phrase?: string | null | undefined;
|
|
632
613
|
deterministic?: boolean | undefined;
|
|
633
|
-
|
|
614
|
+
phrases?: string[] | null | undefined;
|
|
615
|
+
trigger_delay_ms?: number | null | undefined;
|
|
634
616
|
interval_ms?: number | null | undefined;
|
|
635
617
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
636
|
-
phrases?: string[] | null | undefined;
|
|
637
618
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
638
|
-
|
|
619
|
+
expected_latency_ms?: number | null | undefined;
|
|
620
|
+
custom_phrase?: string | null | undefined;
|
|
639
621
|
} | null | undefined;
|
|
640
|
-
|
|
622
|
+
audio_fillers?: string[] | null | undefined;
|
|
623
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
641
624
|
}[] | undefined;
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
625
|
+
escalation_config?: {
|
|
626
|
+
topic_risk_score?: number | undefined;
|
|
627
|
+
auto_escalate_threshold?: number | null | undefined;
|
|
628
|
+
max_loop_count?: number | undefined;
|
|
629
|
+
operator_skill?: string | null | undefined;
|
|
630
|
+
} | null | undefined;
|
|
631
|
+
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
647
632
|
guardrails?: {
|
|
633
|
+
name: string;
|
|
648
634
|
description: string;
|
|
649
635
|
enforcement?: "hard" | "soft" | undefined;
|
|
650
|
-
name: string;
|
|
651
636
|
}[] | undefined;
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
637
|
+
channel_overrides?: {
|
|
638
|
+
[x: string]: {
|
|
639
|
+
objective?: string | null | undefined;
|
|
640
|
+
action_guidelines?: string[] | undefined;
|
|
641
|
+
progress?: {
|
|
642
|
+
deterministic?: boolean | undefined;
|
|
643
|
+
phrases?: string[] | null | undefined;
|
|
644
|
+
trigger_delay_ms?: number | null | undefined;
|
|
645
|
+
interval_ms?: number | null | undefined;
|
|
646
|
+
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
647
|
+
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
648
|
+
expected_latency_ms?: number | null | undefined;
|
|
649
|
+
custom_phrase?: string | null | undefined;
|
|
650
|
+
} | null | undefined;
|
|
651
|
+
};
|
|
652
|
+
} | undefined;
|
|
655
653
|
surface_spec_template?: {
|
|
656
654
|
[x: string]: unknown;
|
|
657
655
|
} | null | undefined;
|
|
658
656
|
turn_policy?: {
|
|
659
657
|
barge_in_enabled?: boolean | undefined;
|
|
660
|
-
block_forward_call?: boolean | undefined;
|
|
661
|
-
block_forward_call_after_turns?: number | undefined;
|
|
662
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
663
|
-
degradation_threshold?: number | undefined;
|
|
664
658
|
greeting_shield_s?: number | undefined;
|
|
665
659
|
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
666
|
-
|
|
660
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
661
|
+
degradation_threshold?: number | undefined;
|
|
662
|
+
block_forward_call?: boolean | undefined;
|
|
663
|
+
block_forward_call_after_turns?: number | undefined;
|
|
667
664
|
stt_eot_threshold?: number | null | undefined;
|
|
665
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
668
666
|
stt_eot_timeout_ms?: number | null | undefined;
|
|
669
667
|
} | null | undefined;
|
|
670
|
-
type: "action";
|
|
671
|
-
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
672
668
|
} | {
|
|
673
|
-
|
|
669
|
+
type: "annotation";
|
|
674
670
|
name: string;
|
|
671
|
+
inner_thought: string;
|
|
675
672
|
next_state: string;
|
|
676
|
-
type: "annotation";
|
|
677
673
|
} | {
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
objective?: string | null | undefined;
|
|
682
|
-
progress?: {
|
|
683
|
-
custom_phrase?: string | null | undefined;
|
|
684
|
-
deterministic?: boolean | undefined;
|
|
685
|
-
expected_latency_ms?: number | null | undefined;
|
|
686
|
-
interval_ms?: number | null | undefined;
|
|
687
|
-
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
688
|
-
phrases?: string[] | null | undefined;
|
|
689
|
-
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
690
|
-
trigger_delay_ms?: number | null | undefined;
|
|
691
|
-
} | null | undefined;
|
|
692
|
-
};
|
|
693
|
-
} | undefined;
|
|
694
|
-
decision_guidelines?: string[] | undefined;
|
|
674
|
+
type: "decision";
|
|
675
|
+
name: string;
|
|
676
|
+
objective: string;
|
|
695
677
|
exit_conditions: {
|
|
696
678
|
description: string;
|
|
697
|
-
filler_hint?: string | null | undefined;
|
|
698
679
|
next_state: string;
|
|
680
|
+
filler_hint?: string | null | undefined;
|
|
699
681
|
}[];
|
|
700
|
-
|
|
701
|
-
description: string;
|
|
702
|
-
enforcement?: "hard" | "soft" | undefined;
|
|
703
|
-
name: string;
|
|
704
|
-
}[] | undefined;
|
|
705
|
-
name: string;
|
|
706
|
-
objective: string;
|
|
682
|
+
decision_guidelines?: string[] | undefined;
|
|
707
683
|
tool_call_specs?: {
|
|
684
|
+
tool_id: string;
|
|
708
685
|
additional_instruction?: string | undefined;
|
|
709
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
710
|
-
audio_fillers?: string[] | null | undefined;
|
|
711
686
|
navigate_on_completion?: boolean | undefined;
|
|
712
687
|
progress?: {
|
|
713
|
-
custom_phrase?: string | null | undefined;
|
|
714
688
|
deterministic?: boolean | undefined;
|
|
715
|
-
|
|
689
|
+
phrases?: string[] | null | undefined;
|
|
690
|
+
trigger_delay_ms?: number | null | undefined;
|
|
716
691
|
interval_ms?: number | null | undefined;
|
|
717
692
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
718
|
-
phrases?: string[] | null | undefined;
|
|
719
693
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
720
|
-
|
|
694
|
+
expected_latency_ms?: number | null | undefined;
|
|
695
|
+
custom_phrase?: string | null | undefined;
|
|
721
696
|
} | null | undefined;
|
|
722
|
-
|
|
697
|
+
audio_fillers?: string[] | null | undefined;
|
|
698
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
723
699
|
}[] | undefined;
|
|
724
|
-
turn_policy?: {
|
|
725
|
-
barge_in_enabled?: boolean | undefined;
|
|
726
|
-
block_forward_call?: boolean | undefined;
|
|
727
|
-
block_forward_call_after_turns?: number | undefined;
|
|
728
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
729
|
-
degradation_threshold?: number | undefined;
|
|
730
|
-
greeting_shield_s?: number | undefined;
|
|
731
|
-
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
732
|
-
stt_eager_eot_threshold?: number | null | undefined;
|
|
733
|
-
stt_eot_threshold?: number | null | undefined;
|
|
734
|
-
stt_eot_timeout_ms?: number | null | undefined;
|
|
735
|
-
} | null | undefined;
|
|
736
|
-
type: "decision";
|
|
737
700
|
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
701
|
+
guardrails?: {
|
|
702
|
+
name: string;
|
|
703
|
+
description: string;
|
|
704
|
+
enforcement?: "hard" | "soft" | undefined;
|
|
705
|
+
}[] | undefined;
|
|
741
706
|
channel_overrides?: {
|
|
742
707
|
[x: string]: {
|
|
743
|
-
action_guidelines?: string[] | undefined;
|
|
744
708
|
objective?: string | null | undefined;
|
|
709
|
+
action_guidelines?: string[] | undefined;
|
|
745
710
|
progress?: {
|
|
746
|
-
custom_phrase?: string | null | undefined;
|
|
747
711
|
deterministic?: boolean | undefined;
|
|
748
|
-
|
|
712
|
+
phrases?: string[] | null | undefined;
|
|
713
|
+
trigger_delay_ms?: number | null | undefined;
|
|
749
714
|
interval_ms?: number | null | undefined;
|
|
750
715
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
751
|
-
phrases?: string[] | null | undefined;
|
|
752
716
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
753
|
-
|
|
717
|
+
expected_latency_ms?: number | null | undefined;
|
|
718
|
+
custom_phrase?: string | null | undefined;
|
|
754
719
|
} | null | undefined;
|
|
755
720
|
};
|
|
756
721
|
} | undefined;
|
|
722
|
+
turn_policy?: {
|
|
723
|
+
barge_in_enabled?: boolean | undefined;
|
|
724
|
+
greeting_shield_s?: number | undefined;
|
|
725
|
+
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
726
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
727
|
+
degradation_threshold?: number | undefined;
|
|
728
|
+
block_forward_call?: boolean | undefined;
|
|
729
|
+
block_forward_call_after_turns?: number | undefined;
|
|
730
|
+
stt_eot_threshold?: number | null | undefined;
|
|
731
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
732
|
+
stt_eot_timeout_ms?: number | null | undefined;
|
|
733
|
+
} | null | undefined;
|
|
734
|
+
} | {
|
|
735
|
+
type: "data_collection";
|
|
736
|
+
name: string;
|
|
737
|
+
objective: string;
|
|
757
738
|
fields: {
|
|
758
|
-
ask_prompt?: string | null | undefined;
|
|
759
|
-
fhir_path?: string | null | undefined;
|
|
760
739
|
key: string;
|
|
740
|
+
type: string;
|
|
761
741
|
label: string;
|
|
762
|
-
options?: string[] | null | undefined;
|
|
763
742
|
required?: boolean | undefined;
|
|
764
|
-
|
|
743
|
+
options?: string[] | null | undefined;
|
|
765
744
|
validation?: string | null | undefined;
|
|
745
|
+
ask_prompt?: string | null | undefined;
|
|
746
|
+
fhir_path?: string | null | undefined;
|
|
766
747
|
}[];
|
|
748
|
+
on_complete: string;
|
|
749
|
+
action_guidelines?: string[] | undefined;
|
|
750
|
+
boundary_constraints?: string[] | undefined;
|
|
751
|
+
surface_fallback?: boolean | undefined;
|
|
752
|
+
surface_fallback_after_turns?: number | undefined;
|
|
753
|
+
max_turns?: number | undefined;
|
|
767
754
|
guardrails?: {
|
|
755
|
+
name: string;
|
|
768
756
|
description: string;
|
|
769
757
|
enforcement?: "hard" | "soft" | undefined;
|
|
770
|
-
name: string;
|
|
771
758
|
}[] | undefined;
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
759
|
+
channel_overrides?: {
|
|
760
|
+
[x: string]: {
|
|
761
|
+
objective?: string | null | undefined;
|
|
762
|
+
action_guidelines?: string[] | undefined;
|
|
763
|
+
progress?: {
|
|
764
|
+
deterministic?: boolean | undefined;
|
|
765
|
+
phrases?: string[] | null | undefined;
|
|
766
|
+
trigger_delay_ms?: number | null | undefined;
|
|
767
|
+
interval_ms?: number | null | undefined;
|
|
768
|
+
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
769
|
+
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
770
|
+
expected_latency_ms?: number | null | undefined;
|
|
771
|
+
custom_phrase?: string | null | undefined;
|
|
772
|
+
} | null | undefined;
|
|
773
|
+
};
|
|
774
|
+
} | undefined;
|
|
775
|
+
turn_policy?: {
|
|
776
|
+
barge_in_enabled?: boolean | undefined;
|
|
777
|
+
greeting_shield_s?: number | undefined;
|
|
778
|
+
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
779
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
780
|
+
degradation_threshold?: number | undefined;
|
|
781
|
+
block_forward_call?: boolean | undefined;
|
|
782
|
+
block_forward_call_after_turns?: number | undefined;
|
|
783
|
+
stt_eot_threshold?: number | null | undefined;
|
|
784
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
785
|
+
stt_eot_timeout_ms?: number | null | undefined;
|
|
786
|
+
} | null | undefined;
|
|
778
787
|
tool_call_specs?: {
|
|
788
|
+
tool_id: string;
|
|
779
789
|
additional_instruction?: string | undefined;
|
|
780
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
781
|
-
audio_fillers?: string[] | null | undefined;
|
|
782
790
|
navigate_on_completion?: boolean | undefined;
|
|
783
791
|
progress?: {
|
|
784
|
-
custom_phrase?: string | null | undefined;
|
|
785
792
|
deterministic?: boolean | undefined;
|
|
786
|
-
|
|
793
|
+
phrases?: string[] | null | undefined;
|
|
794
|
+
trigger_delay_ms?: number | null | undefined;
|
|
787
795
|
interval_ms?: number | null | undefined;
|
|
788
796
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
789
|
-
phrases?: string[] | null | undefined;
|
|
790
797
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
791
|
-
|
|
798
|
+
expected_latency_ms?: number | null | undefined;
|
|
799
|
+
custom_phrase?: string | null | undefined;
|
|
792
800
|
} | null | undefined;
|
|
793
|
-
|
|
801
|
+
audio_fillers?: string[] | null | undefined;
|
|
802
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
794
803
|
}[] | undefined;
|
|
795
|
-
turn_policy?: {
|
|
796
|
-
barge_in_enabled?: boolean | undefined;
|
|
797
|
-
block_forward_call?: boolean | undefined;
|
|
798
|
-
block_forward_call_after_turns?: number | undefined;
|
|
799
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
800
|
-
degradation_threshold?: number | undefined;
|
|
801
|
-
greeting_shield_s?: number | undefined;
|
|
802
|
-
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
803
|
-
stt_eager_eot_threshold?: number | null | undefined;
|
|
804
|
-
stt_eot_threshold?: number | null | undefined;
|
|
805
|
-
stt_eot_timeout_ms?: number | null | undefined;
|
|
806
|
-
} | null | undefined;
|
|
807
|
-
type: "data_collection";
|
|
808
804
|
})[];
|
|
805
|
+
new_user_initial_state: string;
|
|
806
|
+
returning_user_initial_state: string;
|
|
809
807
|
terminal_state: string;
|
|
808
|
+
global_intra_state_navigation_guidelines: string[];
|
|
809
|
+
global_action_guidelines: string[];
|
|
810
|
+
global_boundary_constraints: string[];
|
|
810
811
|
topology_description: string | null;
|
|
812
|
+
created_at: string;
|
|
811
813
|
updated_at: string;
|
|
812
|
-
version: number;
|
|
813
|
-
workspace_id: string;
|
|
814
814
|
}, any, any>;
|
|
815
815
|
/** Get a specific version by number, or pass "latest" for the most recent */
|
|
816
816
|
getVersion(contextGraphId: ContextGraphId | string, version: number | 'latest'): Promise<{
|
|
817
|
+
id: string;
|
|
818
|
+
workspace_id: string;
|
|
817
819
|
context_graph_id: string;
|
|
818
|
-
|
|
820
|
+
version: number;
|
|
819
821
|
description: string;
|
|
820
|
-
global_action_guidelines: string[];
|
|
821
|
-
global_boundary_constraints: string[];
|
|
822
|
-
global_intra_state_navigation_guidelines: string[];
|
|
823
|
-
id: string;
|
|
824
|
-
new_user_initial_state: string;
|
|
825
|
-
returning_user_initial_state: string;
|
|
826
822
|
states: ({
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
831
|
-
audio_fillers?: string[] | null | undefined;
|
|
832
|
-
navigate_on_completion?: boolean | undefined;
|
|
833
|
-
progress?: {
|
|
834
|
-
custom_phrase?: string | null | undefined;
|
|
835
|
-
deterministic?: boolean | undefined;
|
|
836
|
-
expected_latency_ms?: number | null | undefined;
|
|
837
|
-
interval_ms?: number | null | undefined;
|
|
838
|
-
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
839
|
-
phrases?: string[] | null | undefined;
|
|
840
|
-
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
841
|
-
trigger_delay_ms?: number | null | undefined;
|
|
842
|
-
} | null | undefined;
|
|
843
|
-
tool_id: string;
|
|
844
|
-
}[] | undefined;
|
|
823
|
+
type: "action";
|
|
824
|
+
name: string;
|
|
825
|
+
objective: string;
|
|
845
826
|
actions: {
|
|
846
827
|
description: string;
|
|
847
828
|
filler_hint?: string | null | undefined;
|
|
848
829
|
}[];
|
|
830
|
+
intra_state_navigation_guidelines: string[];
|
|
831
|
+
action_guidelines: string[];
|
|
849
832
|
boundary_constraints: string[];
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
expected_latency_ms?: number | null | undefined;
|
|
858
|
-
interval_ms?: number | null | undefined;
|
|
859
|
-
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
860
|
-
phrases?: string[] | null | undefined;
|
|
861
|
-
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
862
|
-
trigger_delay_ms?: number | null | undefined;
|
|
863
|
-
} | null | undefined;
|
|
864
|
-
};
|
|
865
|
-
} | undefined;
|
|
866
|
-
escalation_config?: {
|
|
867
|
-
auto_escalate_threshold?: number | null | undefined;
|
|
868
|
-
max_loop_count?: number | undefined;
|
|
869
|
-
operator_skill?: string | null | undefined;
|
|
870
|
-
topic_risk_score?: number | undefined;
|
|
871
|
-
} | null | undefined;
|
|
872
|
-
exit_condition_tool_call_specs?: {
|
|
833
|
+
exit_conditions: {
|
|
834
|
+
description: string;
|
|
835
|
+
next_state: string;
|
|
836
|
+
filler_hint?: string | null | undefined;
|
|
837
|
+
}[];
|
|
838
|
+
action_tool_call_specs?: {
|
|
839
|
+
tool_id: string;
|
|
873
840
|
additional_instruction?: string | undefined;
|
|
874
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
875
|
-
audio_fillers?: string[] | null | undefined;
|
|
876
841
|
navigate_on_completion?: boolean | undefined;
|
|
877
842
|
progress?: {
|
|
878
|
-
custom_phrase?: string | null | undefined;
|
|
879
843
|
deterministic?: boolean | undefined;
|
|
880
|
-
|
|
844
|
+
phrases?: string[] | null | undefined;
|
|
845
|
+
trigger_delay_ms?: number | null | undefined;
|
|
881
846
|
interval_ms?: number | null | undefined;
|
|
882
847
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
883
|
-
phrases?: string[] | null | undefined;
|
|
884
848
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
885
|
-
|
|
849
|
+
expected_latency_ms?: number | null | undefined;
|
|
850
|
+
custom_phrase?: string | null | undefined;
|
|
886
851
|
} | null | undefined;
|
|
852
|
+
audio_fillers?: string[] | null | undefined;
|
|
853
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
854
|
+
}[] | undefined;
|
|
855
|
+
exit_condition_tool_call_specs?: {
|
|
887
856
|
tool_id: string;
|
|
857
|
+
additional_instruction?: string | undefined;
|
|
858
|
+
navigate_on_completion?: boolean | undefined;
|
|
859
|
+
progress?: {
|
|
860
|
+
deterministic?: boolean | undefined;
|
|
861
|
+
phrases?: string[] | null | undefined;
|
|
862
|
+
trigger_delay_ms?: number | null | undefined;
|
|
863
|
+
interval_ms?: number | null | undefined;
|
|
864
|
+
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
865
|
+
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
866
|
+
expected_latency_ms?: number | null | undefined;
|
|
867
|
+
custom_phrase?: string | null | undefined;
|
|
868
|
+
} | null | undefined;
|
|
869
|
+
audio_fillers?: string[] | null | undefined;
|
|
870
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
888
871
|
}[] | undefined;
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
872
|
+
escalation_config?: {
|
|
873
|
+
topic_risk_score?: number | undefined;
|
|
874
|
+
auto_escalate_threshold?: number | null | undefined;
|
|
875
|
+
max_loop_count?: number | undefined;
|
|
876
|
+
operator_skill?: string | null | undefined;
|
|
877
|
+
} | null | undefined;
|
|
878
|
+
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
894
879
|
guardrails?: {
|
|
880
|
+
name: string;
|
|
895
881
|
description: string;
|
|
896
882
|
enforcement?: "hard" | "soft" | undefined;
|
|
897
|
-
name: string;
|
|
898
883
|
}[] | undefined;
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
884
|
+
channel_overrides?: {
|
|
885
|
+
[x: string]: {
|
|
886
|
+
objective?: string | null | undefined;
|
|
887
|
+
action_guidelines?: string[] | undefined;
|
|
888
|
+
progress?: {
|
|
889
|
+
deterministic?: boolean | undefined;
|
|
890
|
+
phrases?: string[] | null | undefined;
|
|
891
|
+
trigger_delay_ms?: number | null | undefined;
|
|
892
|
+
interval_ms?: number | null | undefined;
|
|
893
|
+
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
894
|
+
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
895
|
+
expected_latency_ms?: number | null | undefined;
|
|
896
|
+
custom_phrase?: string | null | undefined;
|
|
897
|
+
} | null | undefined;
|
|
898
|
+
};
|
|
899
|
+
} | undefined;
|
|
902
900
|
surface_spec_template?: {
|
|
903
901
|
[x: string]: unknown;
|
|
904
902
|
} | null | undefined;
|
|
905
903
|
turn_policy?: {
|
|
906
904
|
barge_in_enabled?: boolean | undefined;
|
|
907
|
-
block_forward_call?: boolean | undefined;
|
|
908
|
-
block_forward_call_after_turns?: number | undefined;
|
|
909
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
910
|
-
degradation_threshold?: number | undefined;
|
|
911
905
|
greeting_shield_s?: number | undefined;
|
|
912
906
|
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
913
|
-
|
|
907
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
908
|
+
degradation_threshold?: number | undefined;
|
|
909
|
+
block_forward_call?: boolean | undefined;
|
|
910
|
+
block_forward_call_after_turns?: number | undefined;
|
|
914
911
|
stt_eot_threshold?: number | null | undefined;
|
|
912
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
915
913
|
stt_eot_timeout_ms?: number | null | undefined;
|
|
916
914
|
} | null | undefined;
|
|
917
|
-
type: "action";
|
|
918
|
-
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
919
915
|
} | {
|
|
920
|
-
|
|
916
|
+
type: "annotation";
|
|
921
917
|
name: string;
|
|
918
|
+
inner_thought: string;
|
|
922
919
|
next_state: string;
|
|
923
|
-
type: "annotation";
|
|
924
920
|
} | {
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
objective?: string | null | undefined;
|
|
929
|
-
progress?: {
|
|
930
|
-
custom_phrase?: string | null | undefined;
|
|
931
|
-
deterministic?: boolean | undefined;
|
|
932
|
-
expected_latency_ms?: number | null | undefined;
|
|
933
|
-
interval_ms?: number | null | undefined;
|
|
934
|
-
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
935
|
-
phrases?: string[] | null | undefined;
|
|
936
|
-
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
937
|
-
trigger_delay_ms?: number | null | undefined;
|
|
938
|
-
} | null | undefined;
|
|
939
|
-
};
|
|
940
|
-
} | undefined;
|
|
941
|
-
decision_guidelines?: string[] | undefined;
|
|
921
|
+
type: "decision";
|
|
922
|
+
name: string;
|
|
923
|
+
objective: string;
|
|
942
924
|
exit_conditions: {
|
|
943
925
|
description: string;
|
|
944
|
-
filler_hint?: string | null | undefined;
|
|
945
926
|
next_state: string;
|
|
927
|
+
filler_hint?: string | null | undefined;
|
|
946
928
|
}[];
|
|
947
|
-
|
|
948
|
-
description: string;
|
|
949
|
-
enforcement?: "hard" | "soft" | undefined;
|
|
950
|
-
name: string;
|
|
951
|
-
}[] | undefined;
|
|
952
|
-
name: string;
|
|
953
|
-
objective: string;
|
|
929
|
+
decision_guidelines?: string[] | undefined;
|
|
954
930
|
tool_call_specs?: {
|
|
931
|
+
tool_id: string;
|
|
955
932
|
additional_instruction?: string | undefined;
|
|
956
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
957
|
-
audio_fillers?: string[] | null | undefined;
|
|
958
933
|
navigate_on_completion?: boolean | undefined;
|
|
959
934
|
progress?: {
|
|
960
|
-
custom_phrase?: string | null | undefined;
|
|
961
935
|
deterministic?: boolean | undefined;
|
|
962
|
-
|
|
936
|
+
phrases?: string[] | null | undefined;
|
|
937
|
+
trigger_delay_ms?: number | null | undefined;
|
|
963
938
|
interval_ms?: number | null | undefined;
|
|
964
939
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
965
|
-
phrases?: string[] | null | undefined;
|
|
966
940
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
967
|
-
|
|
941
|
+
expected_latency_ms?: number | null | undefined;
|
|
942
|
+
custom_phrase?: string | null | undefined;
|
|
968
943
|
} | null | undefined;
|
|
969
|
-
|
|
944
|
+
audio_fillers?: string[] | null | undefined;
|
|
945
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
970
946
|
}[] | undefined;
|
|
971
|
-
turn_policy?: {
|
|
972
|
-
barge_in_enabled?: boolean | undefined;
|
|
973
|
-
block_forward_call?: boolean | undefined;
|
|
974
|
-
block_forward_call_after_turns?: number | undefined;
|
|
975
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
976
|
-
degradation_threshold?: number | undefined;
|
|
977
|
-
greeting_shield_s?: number | undefined;
|
|
978
|
-
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
979
|
-
stt_eager_eot_threshold?: number | null | undefined;
|
|
980
|
-
stt_eot_threshold?: number | null | undefined;
|
|
981
|
-
stt_eot_timeout_ms?: number | null | undefined;
|
|
982
|
-
} | null | undefined;
|
|
983
|
-
type: "decision";
|
|
984
947
|
wait_for?: ("surface_submission" | "human_approval") | null | undefined;
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
948
|
+
guardrails?: {
|
|
949
|
+
name: string;
|
|
950
|
+
description: string;
|
|
951
|
+
enforcement?: "hard" | "soft" | undefined;
|
|
952
|
+
}[] | undefined;
|
|
988
953
|
channel_overrides?: {
|
|
989
954
|
[x: string]: {
|
|
990
|
-
action_guidelines?: string[] | undefined;
|
|
991
955
|
objective?: string | null | undefined;
|
|
956
|
+
action_guidelines?: string[] | undefined;
|
|
992
957
|
progress?: {
|
|
993
|
-
custom_phrase?: string | null | undefined;
|
|
994
958
|
deterministic?: boolean | undefined;
|
|
995
|
-
|
|
959
|
+
phrases?: string[] | null | undefined;
|
|
960
|
+
trigger_delay_ms?: number | null | undefined;
|
|
996
961
|
interval_ms?: number | null | undefined;
|
|
997
962
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
998
|
-
phrases?: string[] | null | undefined;
|
|
999
963
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
1000
|
-
|
|
964
|
+
expected_latency_ms?: number | null | undefined;
|
|
965
|
+
custom_phrase?: string | null | undefined;
|
|
1001
966
|
} | null | undefined;
|
|
1002
967
|
};
|
|
1003
968
|
} | undefined;
|
|
969
|
+
turn_policy?: {
|
|
970
|
+
barge_in_enabled?: boolean | undefined;
|
|
971
|
+
greeting_shield_s?: number | undefined;
|
|
972
|
+
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
973
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
974
|
+
degradation_threshold?: number | undefined;
|
|
975
|
+
block_forward_call?: boolean | undefined;
|
|
976
|
+
block_forward_call_after_turns?: number | undefined;
|
|
977
|
+
stt_eot_threshold?: number | null | undefined;
|
|
978
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
979
|
+
stt_eot_timeout_ms?: number | null | undefined;
|
|
980
|
+
} | null | undefined;
|
|
981
|
+
} | {
|
|
982
|
+
type: "data_collection";
|
|
983
|
+
name: string;
|
|
984
|
+
objective: string;
|
|
1004
985
|
fields: {
|
|
1005
|
-
ask_prompt?: string | null | undefined;
|
|
1006
|
-
fhir_path?: string | null | undefined;
|
|
1007
986
|
key: string;
|
|
987
|
+
type: string;
|
|
1008
988
|
label: string;
|
|
1009
|
-
options?: string[] | null | undefined;
|
|
1010
989
|
required?: boolean | undefined;
|
|
1011
|
-
|
|
990
|
+
options?: string[] | null | undefined;
|
|
1012
991
|
validation?: string | null | undefined;
|
|
992
|
+
ask_prompt?: string | null | undefined;
|
|
993
|
+
fhir_path?: string | null | undefined;
|
|
1013
994
|
}[];
|
|
995
|
+
on_complete: string;
|
|
996
|
+
action_guidelines?: string[] | undefined;
|
|
997
|
+
boundary_constraints?: string[] | undefined;
|
|
998
|
+
surface_fallback?: boolean | undefined;
|
|
999
|
+
surface_fallback_after_turns?: number | undefined;
|
|
1000
|
+
max_turns?: number | undefined;
|
|
1014
1001
|
guardrails?: {
|
|
1002
|
+
name: string;
|
|
1015
1003
|
description: string;
|
|
1016
1004
|
enforcement?: "hard" | "soft" | undefined;
|
|
1017
|
-
name: string;
|
|
1018
1005
|
}[] | undefined;
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1006
|
+
channel_overrides?: {
|
|
1007
|
+
[x: string]: {
|
|
1008
|
+
objective?: string | null | undefined;
|
|
1009
|
+
action_guidelines?: string[] | undefined;
|
|
1010
|
+
progress?: {
|
|
1011
|
+
deterministic?: boolean | undefined;
|
|
1012
|
+
phrases?: string[] | null | undefined;
|
|
1013
|
+
trigger_delay_ms?: number | null | undefined;
|
|
1014
|
+
interval_ms?: number | null | undefined;
|
|
1015
|
+
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
1016
|
+
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
1017
|
+
expected_latency_ms?: number | null | undefined;
|
|
1018
|
+
custom_phrase?: string | null | undefined;
|
|
1019
|
+
} | null | undefined;
|
|
1020
|
+
};
|
|
1021
|
+
} | undefined;
|
|
1022
|
+
turn_policy?: {
|
|
1023
|
+
barge_in_enabled?: boolean | undefined;
|
|
1024
|
+
greeting_shield_s?: number | undefined;
|
|
1025
|
+
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
1026
|
+
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
1027
|
+
degradation_threshold?: number | undefined;
|
|
1028
|
+
block_forward_call?: boolean | undefined;
|
|
1029
|
+
block_forward_call_after_turns?: number | undefined;
|
|
1030
|
+
stt_eot_threshold?: number | null | undefined;
|
|
1031
|
+
stt_eager_eot_threshold?: number | null | undefined;
|
|
1032
|
+
stt_eot_timeout_ms?: number | null | undefined;
|
|
1033
|
+
} | null | undefined;
|
|
1025
1034
|
tool_call_specs?: {
|
|
1035
|
+
tool_id: string;
|
|
1026
1036
|
additional_instruction?: string | undefined;
|
|
1027
|
-
audio_filler_triggered_after?: number | null | undefined;
|
|
1028
|
-
audio_fillers?: string[] | null | undefined;
|
|
1029
1037
|
navigate_on_completion?: boolean | undefined;
|
|
1030
1038
|
progress?: {
|
|
1031
|
-
custom_phrase?: string | null | undefined;
|
|
1032
1039
|
deterministic?: boolean | undefined;
|
|
1033
|
-
|
|
1040
|
+
phrases?: string[] | null | undefined;
|
|
1041
|
+
trigger_delay_ms?: number | null | undefined;
|
|
1034
1042
|
interval_ms?: number | null | undefined;
|
|
1035
1043
|
mode?: "auto" | "silent" | "backchannel" | "verbal" | undefined;
|
|
1036
|
-
phrases?: string[] | null | undefined;
|
|
1037
1044
|
progress_class?: ("lookup" | "write" | "external_call" | "compute" | "multi_step") | null | undefined;
|
|
1038
|
-
|
|
1045
|
+
expected_latency_ms?: number | null | undefined;
|
|
1046
|
+
custom_phrase?: string | null | undefined;
|
|
1039
1047
|
} | null | undefined;
|
|
1040
|
-
|
|
1048
|
+
audio_fillers?: string[] | null | undefined;
|
|
1049
|
+
audio_filler_triggered_after?: number | null | undefined;
|
|
1041
1050
|
}[] | undefined;
|
|
1042
|
-
turn_policy?: {
|
|
1043
|
-
barge_in_enabled?: boolean | undefined;
|
|
1044
|
-
block_forward_call?: boolean | undefined;
|
|
1045
|
-
block_forward_call_after_turns?: number | undefined;
|
|
1046
|
-
context_strategy?: "full" | "summarize" | "compact" | undefined;
|
|
1047
|
-
degradation_threshold?: number | undefined;
|
|
1048
|
-
greeting_shield_s?: number | undefined;
|
|
1049
|
-
safety_response?: "suspend_forward" | "stay_empathize" | "alert" | undefined;
|
|
1050
|
-
stt_eager_eot_threshold?: number | null | undefined;
|
|
1051
|
-
stt_eot_threshold?: number | null | undefined;
|
|
1052
|
-
stt_eot_timeout_ms?: number | null | undefined;
|
|
1053
|
-
} | null | undefined;
|
|
1054
|
-
type: "data_collection";
|
|
1055
1051
|
})[];
|
|
1052
|
+
new_user_initial_state: string;
|
|
1053
|
+
returning_user_initial_state: string;
|
|
1056
1054
|
terminal_state: string;
|
|
1055
|
+
global_intra_state_navigation_guidelines: string[];
|
|
1056
|
+
global_action_guidelines: string[];
|
|
1057
|
+
global_boundary_constraints: string[];
|
|
1057
1058
|
topology_description: string | null;
|
|
1059
|
+
created_at: string;
|
|
1058
1060
|
updated_at: string;
|
|
1059
|
-
version: number;
|
|
1060
|
-
workspace_id: string;
|
|
1061
1061
|
} & import("../index.js").ResponseMetadata>;
|
|
1062
1062
|
}
|
|
1063
1063
|
//# sourceMappingURL=context-graphs.d.ts.map
|