32
32
* MessageOutputDebugTurnEventTurnEventTopicSwitchDenied -
33
33
* MessageOutputDebugTurnEventTurnEventActionRoutingDenied -
34
34
* MessageOutputDebugTurnEventTurnEventSuggestionIntentsDenied -
35
- * MessageOutputDebugTurnEventTurnEventGenerativeAICalled -
36
35
* MessageOutputDebugTurnEventTurnEventClientActions
37
36
*/
38
37
public class MessageOutputDebugTurnEvent extends GenericModel {
@@ -66,8 +65,6 @@ public class MessageOutputDebugTurnEvent extends GenericModel {
66
65
discriminatorMapping .put (
67
66
"suggestion_intents_denied" ,
68
67
MessageOutputDebugTurnEventTurnEventSuggestionIntentsDenied .class );
69
- discriminatorMapping .put (
70
- "generative_ai_called" , MessageOutputDebugTurnEventTurnEventGenerativeAICalled .class );
71
68
discriminatorMapping .put (
72
69
"client_actions" , MessageOutputDebugTurnEventTurnEventClientActions .class );
73
70
}
@@ -123,21 +120,13 @@ public interface Reason {
123
120
protected Boolean hasQuestion ;
124
121
125
122
protected Boolean prompted ;
126
-
123
+ protected TurnEventCalloutCallout callout ;
127
124
@ SerializedName ("route_name" )
128
125
protected String routeName ;
129
126
130
127
@ SerializedName ("intents_denied" )
131
128
protected List <RuntimeIntent > intentsDenied ;
132
129
133
- @ SerializedName ("generative_ai_start_time" )
134
- protected String generativeAiStartTime ;
135
-
136
- @ SerializedName ("generative_ai" )
137
- protected GenerativeAITask generativeAi ;
138
-
139
- protected TurnEventGenerativeAICalledMetrics metrics ;
140
-
141
130
@ SerializedName ("client_actions" )
142
131
protected List <ClientAction > clientActions ;
143
132
@@ -233,6 +222,15 @@ public Boolean isPrompted() {
233
222
return prompted ;
234
223
}
235
224
225
+ /**
226
+ * Gets the callout.
227
+ *
228
+ * @return the callout
229
+ */
230
+ public TurnEventCalloutCallout getCallout () {
231
+ return callout ;
232
+ }
233
+
236
234
/**
237
235
* Gets the routeName.
238
236
*
@@ -255,35 +253,6 @@ public List<RuntimeIntent> getIntentsDenied() {
255
253
return intentsDenied ;
256
254
}
257
255
258
- /**
259
- * Gets the generativeAiStartTime.
260
- *
261
- * <p>The time when generative ai started processing the message.
262
- *
263
- * @return the generativeAiStartTime
264
- */
265
- public String getGenerativeAiStartTime () {
266
- return generativeAiStartTime ;
267
- }
268
-
269
- /**
270
- * Gets the generativeAi.
271
- *
272
- * @return the generativeAi
273
- */
274
- public GenerativeAITask getGenerativeAi () {
275
- return generativeAi ;
276
- }
277
-
278
- /**
279
- * Gets the metrics.
280
- *
281
- * @return the metrics
282
- */
283
- public TurnEventGenerativeAICalledMetrics getMetrics () {
284
- return metrics ;
285
- }
286
-
287
256
/**
288
257
* Gets the clientActions.
289
258
*
0 commit comments