@@ -3718,11 +3718,9 @@ proto.assistant_api.AssistantToolLog.toObject = function(includeInstance, msg) {
37183718 assistantconversationid : jspb . Message . getFieldWithDefault ( msg , 11 , "0" ) ,
37193719 assistantconversationmessageid : jspb . Message . getFieldWithDefault ( msg , 12 , "" ) ,
37203720 assetprefix : jspb . Message . getFieldWithDefault ( msg , 14 , "" ) ,
3721- executionmethod : jspb . Message . getFieldWithDefault ( msg , 15 , "" ) ,
37223721 timetaken : jspb . Message . getFieldWithDefault ( msg , 16 , "0" ) ,
3723- assistanttoolid : jspb . Message . getFieldWithDefault ( msg , 13 , "0" ) ,
37243722 assistanttoolname : jspb . Message . getFieldWithDefault ( msg , 17 , "" ) ,
3725- assistanttool : ( f = msg . getAssistanttool ( ) ) && proto . assistant_api . AssistantTool . toObject ( includeInstance , f )
3723+ toolcallid : jspb . Message . getFieldWithDefault ( msg , 19 , "" )
37263724 } ;
37273725
37283726 if ( includeInstance ) {
@@ -3816,26 +3814,17 @@ proto.assistant_api.AssistantToolLog.deserializeBinaryFromReader = function(msg,
38163814 var value = /** @type {string } */ ( reader . readString ( ) ) ;
38173815 msg . setAssetprefix ( value ) ;
38183816 break ;
3819- case 15 :
3820- var value = /** @type {string } */ ( reader . readString ( ) ) ;
3821- msg . setExecutionmethod ( value ) ;
3822- break ;
38233817 case 16 :
38243818 var value = /** @type {string } */ ( reader . readUint64String ( ) ) ;
38253819 msg . setTimetaken ( value ) ;
38263820 break ;
3827- case 13 :
3828- var value = /** @type {string } */ ( reader . readUint64String ( ) ) ;
3829- msg . setAssistanttoolid ( value ) ;
3830- break ;
38313821 case 17 :
38323822 var value = /** @type {string } */ ( reader . readString ( ) ) ;
38333823 msg . setAssistanttoolname ( value ) ;
38343824 break ;
3835- case 18 :
3836- var value = new proto . assistant_api . AssistantTool ;
3837- reader . readMessage ( value , proto . assistant_api . AssistantTool . deserializeBinaryFromReader ) ;
3838- msg . setAssistanttool ( value ) ;
3825+ case 19 :
3826+ var value = /** @type {string } */ ( reader . readString ( ) ) ;
3827+ msg . setToolcallid ( value ) ;
38393828 break ;
38403829 default :
38413830 reader . skipField ( ) ;
@@ -3962,40 +3951,25 @@ proto.assistant_api.AssistantToolLog.serializeBinaryToWriter = function(message,
39623951 f
39633952 ) ;
39643953 }
3965- f = message . getExecutionmethod ( ) ;
3966- if ( f . length > 0 ) {
3967- writer . writeString (
3968- 15 ,
3969- f
3970- ) ;
3971- }
39723954 f = message . getTimetaken ( ) ;
39733955 if ( parseInt ( f , 10 ) !== 0 ) {
39743956 writer . writeUint64String (
39753957 16 ,
39763958 f
39773959 ) ;
39783960 }
3979- f = message . getAssistanttoolid ( ) ;
3980- if ( parseInt ( f , 10 ) !== 0 ) {
3981- writer . writeUint64String (
3982- 13 ,
3983- f
3984- ) ;
3985- }
39863961 f = message . getAssistanttoolname ( ) ;
39873962 if ( f . length > 0 ) {
39883963 writer . writeString (
39893964 17 ,
39903965 f
39913966 ) ;
39923967 }
3993- f = message . getAssistanttool ( ) ;
3994- if ( f != null ) {
3995- writer . writeMessage (
3996- 18 ,
3997- f ,
3998- proto . assistant_api . AssistantTool . serializeBinaryToWriter
3968+ f = message . getToolcallid ( ) ;
3969+ if ( f . length > 0 ) {
3970+ writer . writeString (
3971+ 19 ,
3972+ f
39993973 ) ;
40003974 }
40013975} ;
@@ -4330,24 +4304,6 @@ proto.assistant_api.AssistantToolLog.prototype.setAssetprefix = function(value)
43304304} ;
43314305
43324306
4333- /**
4334- * optional string executionMethod = 15;
4335- * @return {string }
4336- */
4337- proto . assistant_api . AssistantToolLog . prototype . getExecutionmethod = function ( ) {
4338- return /** @type {string } */ ( jspb . Message . getFieldWithDefault ( this , 15 , "" ) ) ;
4339- } ;
4340-
4341-
4342- /**
4343- * @param {string } value
4344- * @return {!proto.assistant_api.AssistantToolLog } returns this
4345- */
4346- proto . assistant_api . AssistantToolLog . prototype . setExecutionmethod = function ( value ) {
4347- return jspb . Message . setProto3StringField ( this , 15 , value ) ;
4348- } ;
4349-
4350-
43514307/**
43524308 * optional uint64 timeTaken = 16;
43534309 * @return {string }
@@ -4366,24 +4322,6 @@ proto.assistant_api.AssistantToolLog.prototype.setTimetaken = function(value) {
43664322} ;
43674323
43684324
4369- /**
4370- * optional uint64 assistantToolId = 13;
4371- * @return {string }
4372- */
4373- proto . assistant_api . AssistantToolLog . prototype . getAssistanttoolid = function ( ) {
4374- return /** @type {string } */ ( jspb . Message . getFieldWithDefault ( this , 13 , "0" ) ) ;
4375- } ;
4376-
4377-
4378- /**
4379- * @param {string } value
4380- * @return {!proto.assistant_api.AssistantToolLog } returns this
4381- */
4382- proto . assistant_api . AssistantToolLog . prototype . setAssistanttoolid = function ( value ) {
4383- return jspb . Message . setProto3StringIntField ( this , 13 , value ) ;
4384- } ;
4385-
4386-
43874325/**
43884326 * optional string assistantToolName = 17;
43894327 * @return {string }
@@ -4403,39 +4341,20 @@ proto.assistant_api.AssistantToolLog.prototype.setAssistanttoolname = function(v
44034341
44044342
44054343/**
4406- * optional AssistantTool assistantTool = 18 ;
4407- * @return {?proto.assistant_api.AssistantTool }
4344+ * optional string toolCallId = 19 ;
4345+ * @return {string }
44084346 */
4409- proto . assistant_api . AssistantToolLog . prototype . getAssistanttool = function ( ) {
4410- return /** @type {?proto.assistant_api.AssistantTool } */ (
4411- jspb . Message . getWrapperField ( this , proto . assistant_api . AssistantTool , 18 ) ) ;
4347+ proto . assistant_api . AssistantToolLog . prototype . getToolcallid = function ( ) {
4348+ return /** @type {string } */ ( jspb . Message . getFieldWithDefault ( this , 19 , "" ) ) ;
44124349} ;
44134350
44144351
44154352/**
4416- * @param {?proto.assistant_api.AssistantTool|undefined } value
4417- * @return {!proto.assistant_api.AssistantToolLog } returns this
4418- */
4419- proto . assistant_api . AssistantToolLog . prototype . setAssistanttool = function ( value ) {
4420- return jspb . Message . setWrapperField ( this , 18 , value ) ;
4421- } ;
4422-
4423-
4424- /**
4425- * Clears the message field making it undefined.
4353+ * @param {string } value
44264354 * @return {!proto.assistant_api.AssistantToolLog } returns this
44274355 */
4428- proto . assistant_api . AssistantToolLog . prototype . clearAssistanttool = function ( ) {
4429- return this . setAssistanttool ( undefined ) ;
4430- } ;
4431-
4432-
4433- /**
4434- * Returns whether this field is set.
4435- * @return {boolean }
4436- */
4437- proto . assistant_api . AssistantToolLog . prototype . hasAssistanttool = function ( ) {
4438- return jspb . Message . getField ( this , 18 ) != null ;
4356+ proto . assistant_api . AssistantToolLog . prototype . setToolcallid = function ( value ) {
4357+ return jspb . Message . setProto3StringField ( this , 19 , value ) ;
44394358} ;
44404359
44414360
0 commit comments