@ondewo/nlu-client-typescript 6.9.0 → 6.11.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.
@@ -43,6 +43,8 @@ var ondewo_nlu_operations_pb = require('../../ondewo/nlu/operations_pb.js');
43
43
  goog.object.extend(proto, ondewo_nlu_operations_pb);
44
44
  var ondewo_nlu_session_pb = require('../../ondewo/nlu/session_pb.js');
45
45
  goog.object.extend(proto, ondewo_nlu_session_pb);
46
+ var ondewo_nlu_ccai_project_pb = require('../../ondewo/nlu/ccai_project_pb.js');
47
+ goog.object.extend(proto, ondewo_nlu_ccai_project_pb);
46
48
  goog.exportSymbol('proto.ondewo.nlu.AddUserToProjectRequest', null, global);
47
49
  goog.exportSymbol('proto.ondewo.nlu.Agent', null, global);
48
50
  goog.exportSymbol('proto.ondewo.nlu.AgentOfUserWithOwner', null, global);
@@ -596,7 +598,7 @@ if (goog.DEBUG && !COMPILED) {
596
598
  * @constructor
597
599
  */
598
600
  proto.ondewo.nlu.GetAgentStatisticsRequest = function(opt_data) {
599
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
601
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.ondewo.nlu.GetAgentStatisticsRequest.repeatedFields_, null);
600
602
  };
601
603
  goog.inherits(proto.ondewo.nlu.GetAgentStatisticsRequest, jspb.Message);
602
604
  if (goog.DEBUG && !COMPILED) {
@@ -6603,6 +6605,13 @@ proto.ondewo.nlu.MigrateAgentRequest.prototype.setAgentContent = function(value)
6603
6605
 
6604
6606
 
6605
6607
 
6608
+ /**
6609
+ * List of repeated fields within this message type.
6610
+ * @private {!Array<number>}
6611
+ * @const
6612
+ */
6613
+ proto.ondewo.nlu.GetAgentStatisticsRequest.repeatedFields_ = [5,6,7,8,10];
6614
+
6606
6615
 
6607
6616
 
6608
6617
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -6637,7 +6646,13 @@ proto.ondewo.nlu.GetAgentStatisticsRequest.toObject = function(includeInstance,
6637
6646
  parent: jspb.Message.getFieldWithDefault(msg, 1, ""),
6638
6647
  format: jspb.Message.getFieldWithDefault(msg, 2, 0),
6639
6648
  languageCode: jspb.Message.getFieldWithDefault(msg, 3, ""),
6640
- type: jspb.Message.getFieldWithDefault(msg, 4, 0)
6649
+ type: jspb.Message.getFieldWithDefault(msg, 4, 0),
6650
+ llmModelFilterList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
6651
+ llmProviderFilterList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
6652
+ llmAgentNameFilterList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
6653
+ llmGroupBysList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
6654
+ fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
6655
+ llmCcaiServiceProviderFilterList: (f = jspb.Message.getRepeatedField(msg, 10)) == null ? undefined : f
6641
6656
  };
6642
6657
 
6643
6658
  if (includeInstance) {
@@ -6690,6 +6705,33 @@ proto.ondewo.nlu.GetAgentStatisticsRequest.deserializeBinaryFromReader = functio
6690
6705
  var value = /** @type {!proto.ondewo.nlu.ReportType} */ (reader.readEnum());
6691
6706
  msg.setType(value);
6692
6707
  break;
6708
+ case 5:
6709
+ var value = /** @type {string} */ (reader.readString());
6710
+ msg.addLlmModelFilter(value);
6711
+ break;
6712
+ case 6:
6713
+ var value = /** @type {string} */ (reader.readString());
6714
+ msg.addLlmProviderFilter(value);
6715
+ break;
6716
+ case 7:
6717
+ var value = /** @type {string} */ (reader.readString());
6718
+ msg.addLlmAgentNameFilter(value);
6719
+ break;
6720
+ case 8:
6721
+ var value = /** @type {string} */ (reader.readString());
6722
+ msg.addLlmGroupBys(value);
6723
+ break;
6724
+ case 9:
6725
+ var value = new google_protobuf_field_mask_pb.FieldMask;
6726
+ reader.readMessage(value,google_protobuf_field_mask_pb.FieldMask.deserializeBinaryFromReader);
6727
+ msg.setFieldMask(value);
6728
+ break;
6729
+ case 10:
6730
+ var values = /** @type {!Array<!proto.ondewo.nlu.CcaiServiceProvider>} */ (reader.isDelimited() ? reader.readPackedEnum() : [reader.readEnum()]);
6731
+ for (var i = 0; i < values.length; i++) {
6732
+ msg.addLlmCcaiServiceProviderFilter(values[i]);
6733
+ }
6734
+ break;
6693
6735
  default:
6694
6736
  reader.skipField();
6695
6737
  break;
@@ -6747,6 +6789,49 @@ proto.ondewo.nlu.GetAgentStatisticsRequest.serializeBinaryToWriter = function(me
6747
6789
  f
6748
6790
  );
6749
6791
  }
6792
+ f = message.getLlmModelFilterList();
6793
+ if (f.length > 0) {
6794
+ writer.writeRepeatedString(
6795
+ 5,
6796
+ f
6797
+ );
6798
+ }
6799
+ f = message.getLlmProviderFilterList();
6800
+ if (f.length > 0) {
6801
+ writer.writeRepeatedString(
6802
+ 6,
6803
+ f
6804
+ );
6805
+ }
6806
+ f = message.getLlmAgentNameFilterList();
6807
+ if (f.length > 0) {
6808
+ writer.writeRepeatedString(
6809
+ 7,
6810
+ f
6811
+ );
6812
+ }
6813
+ f = message.getLlmGroupBysList();
6814
+ if (f.length > 0) {
6815
+ writer.writeRepeatedString(
6816
+ 8,
6817
+ f
6818
+ );
6819
+ }
6820
+ f = message.getFieldMask();
6821
+ if (f != null) {
6822
+ writer.writeMessage(
6823
+ 9,
6824
+ f,
6825
+ google_protobuf_field_mask_pb.FieldMask.serializeBinaryToWriter
6826
+ );
6827
+ }
6828
+ f = message.getLlmCcaiServiceProviderFilterList();
6829
+ if (f.length > 0) {
6830
+ writer.writePackedEnum(
6831
+ 10,
6832
+ f
6833
+ );
6834
+ }
6750
6835
  };
6751
6836
 
6752
6837
 
@@ -6822,6 +6907,228 @@ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.setType = function(value) {
6822
6907
  };
6823
6908
 
6824
6909
 
6910
+ /**
6911
+ * repeated string llm_model_filter = 5;
6912
+ * @return {!Array<string>}
6913
+ */
6914
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.getLlmModelFilterList = function() {
6915
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
6916
+ };
6917
+
6918
+
6919
+ /**
6920
+ * @param {!Array<string>} value
6921
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
6922
+ */
6923
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.setLlmModelFilterList = function(value) {
6924
+ return jspb.Message.setField(this, 5, value || []);
6925
+ };
6926
+
6927
+
6928
+ /**
6929
+ * @param {string} value
6930
+ * @param {number=} opt_index
6931
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
6932
+ */
6933
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.addLlmModelFilter = function(value, opt_index) {
6934
+ return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
6935
+ };
6936
+
6937
+
6938
+ /**
6939
+ * Clears the list making it empty but non-null.
6940
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
6941
+ */
6942
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.clearLlmModelFilterList = function() {
6943
+ return this.setLlmModelFilterList([]);
6944
+ };
6945
+
6946
+
6947
+ /**
6948
+ * repeated string llm_provider_filter = 6;
6949
+ * @return {!Array<string>}
6950
+ */
6951
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.getLlmProviderFilterList = function() {
6952
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
6953
+ };
6954
+
6955
+
6956
+ /**
6957
+ * @param {!Array<string>} value
6958
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
6959
+ */
6960
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.setLlmProviderFilterList = function(value) {
6961
+ return jspb.Message.setField(this, 6, value || []);
6962
+ };
6963
+
6964
+
6965
+ /**
6966
+ * @param {string} value
6967
+ * @param {number=} opt_index
6968
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
6969
+ */
6970
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.addLlmProviderFilter = function(value, opt_index) {
6971
+ return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
6972
+ };
6973
+
6974
+
6975
+ /**
6976
+ * Clears the list making it empty but non-null.
6977
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
6978
+ */
6979
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.clearLlmProviderFilterList = function() {
6980
+ return this.setLlmProviderFilterList([]);
6981
+ };
6982
+
6983
+
6984
+ /**
6985
+ * repeated string llm_agent_name_filter = 7;
6986
+ * @return {!Array<string>}
6987
+ */
6988
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.getLlmAgentNameFilterList = function() {
6989
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 7));
6990
+ };
6991
+
6992
+
6993
+ /**
6994
+ * @param {!Array<string>} value
6995
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
6996
+ */
6997
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.setLlmAgentNameFilterList = function(value) {
6998
+ return jspb.Message.setField(this, 7, value || []);
6999
+ };
7000
+
7001
+
7002
+ /**
7003
+ * @param {string} value
7004
+ * @param {number=} opt_index
7005
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7006
+ */
7007
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.addLlmAgentNameFilter = function(value, opt_index) {
7008
+ return jspb.Message.addToRepeatedField(this, 7, value, opt_index);
7009
+ };
7010
+
7011
+
7012
+ /**
7013
+ * Clears the list making it empty but non-null.
7014
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7015
+ */
7016
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.clearLlmAgentNameFilterList = function() {
7017
+ return this.setLlmAgentNameFilterList([]);
7018
+ };
7019
+
7020
+
7021
+ /**
7022
+ * repeated string llm_group_bys = 8;
7023
+ * @return {!Array<string>}
7024
+ */
7025
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.getLlmGroupBysList = function() {
7026
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 8));
7027
+ };
7028
+
7029
+
7030
+ /**
7031
+ * @param {!Array<string>} value
7032
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7033
+ */
7034
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.setLlmGroupBysList = function(value) {
7035
+ return jspb.Message.setField(this, 8, value || []);
7036
+ };
7037
+
7038
+
7039
+ /**
7040
+ * @param {string} value
7041
+ * @param {number=} opt_index
7042
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7043
+ */
7044
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.addLlmGroupBys = function(value, opt_index) {
7045
+ return jspb.Message.addToRepeatedField(this, 8, value, opt_index);
7046
+ };
7047
+
7048
+
7049
+ /**
7050
+ * Clears the list making it empty but non-null.
7051
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7052
+ */
7053
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.clearLlmGroupBysList = function() {
7054
+ return this.setLlmGroupBysList([]);
7055
+ };
7056
+
7057
+
7058
+ /**
7059
+ * optional google.protobuf.FieldMask field_mask = 9;
7060
+ * @return {?proto.google.protobuf.FieldMask}
7061
+ */
7062
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.getFieldMask = function() {
7063
+ return /** @type{?proto.google.protobuf.FieldMask} */ (
7064
+ jspb.Message.getWrapperField(this, google_protobuf_field_mask_pb.FieldMask, 9));
7065
+ };
7066
+
7067
+
7068
+ /**
7069
+ * @param {?proto.google.protobuf.FieldMask|undefined} value
7070
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7071
+ */
7072
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.setFieldMask = function(value) {
7073
+ return jspb.Message.setWrapperField(this, 9, value);
7074
+ };
7075
+
7076
+
7077
+ /**
7078
+ * Clears the message field making it undefined.
7079
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7080
+ */
7081
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.clearFieldMask = function() {
7082
+ return this.setFieldMask(undefined);
7083
+ };
7084
+
7085
+
7086
+ /**
7087
+ * Returns whether this field is set.
7088
+ * @return {boolean}
7089
+ */
7090
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.hasFieldMask = function() {
7091
+ return jspb.Message.getField(this, 9) != null;
7092
+ };
7093
+
7094
+
7095
+ /**
7096
+ * repeated CcaiServiceProvider llm_ccai_service_provider_filter = 10;
7097
+ * @return {!Array<!proto.ondewo.nlu.CcaiServiceProvider>}
7098
+ */
7099
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.getLlmCcaiServiceProviderFilterList = function() {
7100
+ return /** @type {!Array<!proto.ondewo.nlu.CcaiServiceProvider>} */ (jspb.Message.getRepeatedField(this, 10));
7101
+ };
7102
+
7103
+
7104
+ /**
7105
+ * @param {!Array<!proto.ondewo.nlu.CcaiServiceProvider>} value
7106
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7107
+ */
7108
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.setLlmCcaiServiceProviderFilterList = function(value) {
7109
+ return jspb.Message.setField(this, 10, value || []);
7110
+ };
7111
+
7112
+
7113
+ /**
7114
+ * @param {!proto.ondewo.nlu.CcaiServiceProvider} value
7115
+ * @param {number=} opt_index
7116
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7117
+ */
7118
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.addLlmCcaiServiceProviderFilter = function(value, opt_index) {
7119
+ return jspb.Message.addToRepeatedField(this, 10, value, opt_index);
7120
+ };
7121
+
7122
+
7123
+ /**
7124
+ * Clears the list making it empty but non-null.
7125
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsRequest} returns this
7126
+ */
7127
+ proto.ondewo.nlu.GetAgentStatisticsRequest.prototype.clearLlmCcaiServiceProviderFilterList = function() {
7128
+ return this.setLlmCcaiServiceProviderFilterList([]);
7129
+ };
7130
+
7131
+
6825
7132
 
6826
7133
 
6827
7134
 
@@ -6856,7 +7163,8 @@ proto.ondewo.nlu.GetAgentStatisticsResponse.toObject = function(includeInstance,
6856
7163
  var f, obj = {
6857
7164
  reports: msg.getReports_asB64(),
6858
7165
  format: jspb.Message.getFieldWithDefault(msg, 2, 0),
6859
- type: jspb.Message.getFieldWithDefault(msg, 3, 0)
7166
+ type: jspb.Message.getFieldWithDefault(msg, 3, 0),
7167
+ llmTelemetryReport: (f = msg.getLlmTelemetryReport()) && ondewo_nlu_session_pb.LlmTelemetryReport.toObject(includeInstance, f)
6860
7168
  };
6861
7169
 
6862
7170
  if (includeInstance) {
@@ -6905,6 +7213,11 @@ proto.ondewo.nlu.GetAgentStatisticsResponse.deserializeBinaryFromReader = functi
6905
7213
  var value = /** @type {!proto.ondewo.nlu.ReportType} */ (reader.readEnum());
6906
7214
  msg.setType(value);
6907
7215
  break;
7216
+ case 4:
7217
+ var value = new ondewo_nlu_session_pb.LlmTelemetryReport;
7218
+ reader.readMessage(value,ondewo_nlu_session_pb.LlmTelemetryReport.deserializeBinaryFromReader);
7219
+ msg.setLlmTelemetryReport(value);
7220
+ break;
6908
7221
  default:
6909
7222
  reader.skipField();
6910
7223
  break;
@@ -6955,6 +7268,14 @@ proto.ondewo.nlu.GetAgentStatisticsResponse.serializeBinaryToWriter = function(m
6955
7268
  f
6956
7269
  );
6957
7270
  }
7271
+ f = message.getLlmTelemetryReport();
7272
+ if (f != null) {
7273
+ writer.writeMessage(
7274
+ 4,
7275
+ f,
7276
+ ondewo_nlu_session_pb.LlmTelemetryReport.serializeBinaryToWriter
7277
+ );
7278
+ }
6958
7279
  };
6959
7280
 
6960
7281
 
@@ -7036,13 +7357,50 @@ proto.ondewo.nlu.GetAgentStatisticsResponse.prototype.setType = function(value)
7036
7357
  };
7037
7358
 
7038
7359
 
7360
+ /**
7361
+ * optional LlmTelemetryReport llm_telemetry_report = 4;
7362
+ * @return {?proto.ondewo.nlu.LlmTelemetryReport}
7363
+ */
7364
+ proto.ondewo.nlu.GetAgentStatisticsResponse.prototype.getLlmTelemetryReport = function() {
7365
+ return /** @type{?proto.ondewo.nlu.LlmTelemetryReport} */ (
7366
+ jspb.Message.getWrapperField(this, ondewo_nlu_session_pb.LlmTelemetryReport, 4));
7367
+ };
7368
+
7369
+
7370
+ /**
7371
+ * @param {?proto.ondewo.nlu.LlmTelemetryReport|undefined} value
7372
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsResponse} returns this
7373
+ */
7374
+ proto.ondewo.nlu.GetAgentStatisticsResponse.prototype.setLlmTelemetryReport = function(value) {
7375
+ return jspb.Message.setWrapperField(this, 4, value);
7376
+ };
7377
+
7378
+
7379
+ /**
7380
+ * Clears the message field making it undefined.
7381
+ * @return {!proto.ondewo.nlu.GetAgentStatisticsResponse} returns this
7382
+ */
7383
+ proto.ondewo.nlu.GetAgentStatisticsResponse.prototype.clearLlmTelemetryReport = function() {
7384
+ return this.setLlmTelemetryReport(undefined);
7385
+ };
7386
+
7387
+
7388
+ /**
7389
+ * Returns whether this field is set.
7390
+ * @return {boolean}
7391
+ */
7392
+ proto.ondewo.nlu.GetAgentStatisticsResponse.prototype.hasLlmTelemetryReport = function() {
7393
+ return jspb.Message.getField(this, 4) != null;
7394
+ };
7395
+
7396
+
7039
7397
 
7040
7398
  /**
7041
7399
  * List of repeated fields within this message type.
7042
7400
  * @private {!Array<number>}
7043
7401
  * @const
7044
7402
  */
7045
- proto.ondewo.nlu.GetSessionsStatisticsRequest.repeatedFields_ = [5,7,8];
7403
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.repeatedFields_ = [5,7,8,11,12,13,14,15];
7046
7404
 
7047
7405
 
7048
7406
 
@@ -7085,7 +7443,12 @@ limit: jspb.Message.getFieldWithDefault(msg, 6, 0),
7085
7443
  groupBysList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
7086
7444
  orderBysList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
7087
7445
  fieldMask: (f = msg.getFieldMask()) && google_protobuf_field_mask_pb.FieldMask.toObject(includeInstance, f),
7088
- sqlQuery: jspb.Message.getFieldWithDefault(msg, 10, "")
7446
+ sqlQuery: jspb.Message.getFieldWithDefault(msg, 10, ""),
7447
+ llmModelFilterList: (f = jspb.Message.getRepeatedField(msg, 11)) == null ? undefined : f,
7448
+ llmProviderFilterList: (f = jspb.Message.getRepeatedField(msg, 12)) == null ? undefined : f,
7449
+ llmAgentNameFilterList: (f = jspb.Message.getRepeatedField(msg, 13)) == null ? undefined : f,
7450
+ llmToolNameFilterList: (f = jspb.Message.getRepeatedField(msg, 14)) == null ? undefined : f,
7451
+ llmCcaiServiceProviderFilterList: (f = jspb.Message.getRepeatedField(msg, 15)) == null ? undefined : f
7089
7452
  };
7090
7453
 
7091
7454
  if (includeInstance) {
@@ -7165,6 +7528,28 @@ proto.ondewo.nlu.GetSessionsStatisticsRequest.deserializeBinaryFromReader = func
7165
7528
  var value = /** @type {string} */ (reader.readString());
7166
7529
  msg.setSqlQuery(value);
7167
7530
  break;
7531
+ case 11:
7532
+ var value = /** @type {string} */ (reader.readString());
7533
+ msg.addLlmModelFilter(value);
7534
+ break;
7535
+ case 12:
7536
+ var value = /** @type {string} */ (reader.readString());
7537
+ msg.addLlmProviderFilter(value);
7538
+ break;
7539
+ case 13:
7540
+ var value = /** @type {string} */ (reader.readString());
7541
+ msg.addLlmAgentNameFilter(value);
7542
+ break;
7543
+ case 14:
7544
+ var value = /** @type {string} */ (reader.readString());
7545
+ msg.addLlmToolNameFilter(value);
7546
+ break;
7547
+ case 15:
7548
+ var values = /** @type {!Array<!proto.ondewo.nlu.CcaiServiceProvider>} */ (reader.isDelimited() ? reader.readPackedEnum() : [reader.readEnum()]);
7549
+ for (var i = 0; i < values.length; i++) {
7550
+ msg.addLlmCcaiServiceProviderFilter(values[i]);
7551
+ }
7552
+ break;
7168
7553
  default:
7169
7554
  reader.skipField();
7170
7555
  break;
@@ -7267,6 +7652,41 @@ proto.ondewo.nlu.GetSessionsStatisticsRequest.serializeBinaryToWriter = function
7267
7652
  f
7268
7653
  );
7269
7654
  }
7655
+ f = message.getLlmModelFilterList();
7656
+ if (f.length > 0) {
7657
+ writer.writeRepeatedString(
7658
+ 11,
7659
+ f
7660
+ );
7661
+ }
7662
+ f = message.getLlmProviderFilterList();
7663
+ if (f.length > 0) {
7664
+ writer.writeRepeatedString(
7665
+ 12,
7666
+ f
7667
+ );
7668
+ }
7669
+ f = message.getLlmAgentNameFilterList();
7670
+ if (f.length > 0) {
7671
+ writer.writeRepeatedString(
7672
+ 13,
7673
+ f
7674
+ );
7675
+ }
7676
+ f = message.getLlmToolNameFilterList();
7677
+ if (f.length > 0) {
7678
+ writer.writeRepeatedString(
7679
+ 14,
7680
+ f
7681
+ );
7682
+ }
7683
+ f = message.getLlmCcaiServiceProviderFilterList();
7684
+ if (f.length > 0) {
7685
+ writer.writePackedEnum(
7686
+ 15,
7687
+ f
7688
+ );
7689
+ }
7270
7690
  };
7271
7691
 
7272
7692
 
@@ -7546,6 +7966,191 @@ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.setSqlQuery = function(v
7546
7966
  };
7547
7967
 
7548
7968
 
7969
+ /**
7970
+ * repeated string llm_model_filter = 11;
7971
+ * @return {!Array<string>}
7972
+ */
7973
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.getLlmModelFilterList = function() {
7974
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 11));
7975
+ };
7976
+
7977
+
7978
+ /**
7979
+ * @param {!Array<string>} value
7980
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
7981
+ */
7982
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.setLlmModelFilterList = function(value) {
7983
+ return jspb.Message.setField(this, 11, value || []);
7984
+ };
7985
+
7986
+
7987
+ /**
7988
+ * @param {string} value
7989
+ * @param {number=} opt_index
7990
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
7991
+ */
7992
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.addLlmModelFilter = function(value, opt_index) {
7993
+ return jspb.Message.addToRepeatedField(this, 11, value, opt_index);
7994
+ };
7995
+
7996
+
7997
+ /**
7998
+ * Clears the list making it empty but non-null.
7999
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8000
+ */
8001
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.clearLlmModelFilterList = function() {
8002
+ return this.setLlmModelFilterList([]);
8003
+ };
8004
+
8005
+
8006
+ /**
8007
+ * repeated string llm_provider_filter = 12;
8008
+ * @return {!Array<string>}
8009
+ */
8010
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.getLlmProviderFilterList = function() {
8011
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 12));
8012
+ };
8013
+
8014
+
8015
+ /**
8016
+ * @param {!Array<string>} value
8017
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8018
+ */
8019
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.setLlmProviderFilterList = function(value) {
8020
+ return jspb.Message.setField(this, 12, value || []);
8021
+ };
8022
+
8023
+
8024
+ /**
8025
+ * @param {string} value
8026
+ * @param {number=} opt_index
8027
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8028
+ */
8029
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.addLlmProviderFilter = function(value, opt_index) {
8030
+ return jspb.Message.addToRepeatedField(this, 12, value, opt_index);
8031
+ };
8032
+
8033
+
8034
+ /**
8035
+ * Clears the list making it empty but non-null.
8036
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8037
+ */
8038
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.clearLlmProviderFilterList = function() {
8039
+ return this.setLlmProviderFilterList([]);
8040
+ };
8041
+
8042
+
8043
+ /**
8044
+ * repeated string llm_agent_name_filter = 13;
8045
+ * @return {!Array<string>}
8046
+ */
8047
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.getLlmAgentNameFilterList = function() {
8048
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 13));
8049
+ };
8050
+
8051
+
8052
+ /**
8053
+ * @param {!Array<string>} value
8054
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8055
+ */
8056
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.setLlmAgentNameFilterList = function(value) {
8057
+ return jspb.Message.setField(this, 13, value || []);
8058
+ };
8059
+
8060
+
8061
+ /**
8062
+ * @param {string} value
8063
+ * @param {number=} opt_index
8064
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8065
+ */
8066
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.addLlmAgentNameFilter = function(value, opt_index) {
8067
+ return jspb.Message.addToRepeatedField(this, 13, value, opt_index);
8068
+ };
8069
+
8070
+
8071
+ /**
8072
+ * Clears the list making it empty but non-null.
8073
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8074
+ */
8075
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.clearLlmAgentNameFilterList = function() {
8076
+ return this.setLlmAgentNameFilterList([]);
8077
+ };
8078
+
8079
+
8080
+ /**
8081
+ * repeated string llm_tool_name_filter = 14;
8082
+ * @return {!Array<string>}
8083
+ */
8084
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.getLlmToolNameFilterList = function() {
8085
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 14));
8086
+ };
8087
+
8088
+
8089
+ /**
8090
+ * @param {!Array<string>} value
8091
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8092
+ */
8093
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.setLlmToolNameFilterList = function(value) {
8094
+ return jspb.Message.setField(this, 14, value || []);
8095
+ };
8096
+
8097
+
8098
+ /**
8099
+ * @param {string} value
8100
+ * @param {number=} opt_index
8101
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8102
+ */
8103
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.addLlmToolNameFilter = function(value, opt_index) {
8104
+ return jspb.Message.addToRepeatedField(this, 14, value, opt_index);
8105
+ };
8106
+
8107
+
8108
+ /**
8109
+ * Clears the list making it empty but non-null.
8110
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8111
+ */
8112
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.clearLlmToolNameFilterList = function() {
8113
+ return this.setLlmToolNameFilterList([]);
8114
+ };
8115
+
8116
+
8117
+ /**
8118
+ * repeated CcaiServiceProvider llm_ccai_service_provider_filter = 15;
8119
+ * @return {!Array<!proto.ondewo.nlu.CcaiServiceProvider>}
8120
+ */
8121
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.getLlmCcaiServiceProviderFilterList = function() {
8122
+ return /** @type {!Array<!proto.ondewo.nlu.CcaiServiceProvider>} */ (jspb.Message.getRepeatedField(this, 15));
8123
+ };
8124
+
8125
+
8126
+ /**
8127
+ * @param {!Array<!proto.ondewo.nlu.CcaiServiceProvider>} value
8128
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8129
+ */
8130
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.setLlmCcaiServiceProviderFilterList = function(value) {
8131
+ return jspb.Message.setField(this, 15, value || []);
8132
+ };
8133
+
8134
+
8135
+ /**
8136
+ * @param {!proto.ondewo.nlu.CcaiServiceProvider} value
8137
+ * @param {number=} opt_index
8138
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8139
+ */
8140
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.addLlmCcaiServiceProviderFilter = function(value, opt_index) {
8141
+ return jspb.Message.addToRepeatedField(this, 15, value, opt_index);
8142
+ };
8143
+
8144
+
8145
+ /**
8146
+ * Clears the list making it empty but non-null.
8147
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsRequest} returns this
8148
+ */
8149
+ proto.ondewo.nlu.GetSessionsStatisticsRequest.prototype.clearLlmCcaiServiceProviderFilterList = function() {
8150
+ return this.setLlmCcaiServiceProviderFilterList([]);
8151
+ };
8152
+
8153
+
7549
8154
 
7550
8155
 
7551
8156
 
@@ -7580,7 +8185,8 @@ proto.ondewo.nlu.GetSessionsStatisticsResponse.toObject = function(includeInstan
7580
8185
  var f, obj = {
7581
8186
  reports: msg.getReports_asB64(),
7582
8187
  format: jspb.Message.getFieldWithDefault(msg, 2, 0),
7583
- type: jspb.Message.getFieldWithDefault(msg, 3, 0)
8188
+ type: jspb.Message.getFieldWithDefault(msg, 3, 0),
8189
+ llmTelemetryReport: (f = msg.getLlmTelemetryReport()) && ondewo_nlu_session_pb.LlmTelemetryReport.toObject(includeInstance, f)
7584
8190
  };
7585
8191
 
7586
8192
  if (includeInstance) {
@@ -7629,6 +8235,11 @@ proto.ondewo.nlu.GetSessionsStatisticsResponse.deserializeBinaryFromReader = fun
7629
8235
  var value = /** @type {!proto.ondewo.nlu.SessionsReportType} */ (reader.readEnum());
7630
8236
  msg.setType(value);
7631
8237
  break;
8238
+ case 4:
8239
+ var value = new ondewo_nlu_session_pb.LlmTelemetryReport;
8240
+ reader.readMessage(value,ondewo_nlu_session_pb.LlmTelemetryReport.deserializeBinaryFromReader);
8241
+ msg.setLlmTelemetryReport(value);
8242
+ break;
7632
8243
  default:
7633
8244
  reader.skipField();
7634
8245
  break;
@@ -7679,6 +8290,14 @@ proto.ondewo.nlu.GetSessionsStatisticsResponse.serializeBinaryToWriter = functio
7679
8290
  f
7680
8291
  );
7681
8292
  }
8293
+ f = message.getLlmTelemetryReport();
8294
+ if (f != null) {
8295
+ writer.writeMessage(
8296
+ 4,
8297
+ f,
8298
+ ondewo_nlu_session_pb.LlmTelemetryReport.serializeBinaryToWriter
8299
+ );
8300
+ }
7682
8301
  };
7683
8302
 
7684
8303
 
@@ -7760,6 +8379,43 @@ proto.ondewo.nlu.GetSessionsStatisticsResponse.prototype.setType = function(valu
7760
8379
  };
7761
8380
 
7762
8381
 
8382
+ /**
8383
+ * optional LlmTelemetryReport llm_telemetry_report = 4;
8384
+ * @return {?proto.ondewo.nlu.LlmTelemetryReport}
8385
+ */
8386
+ proto.ondewo.nlu.GetSessionsStatisticsResponse.prototype.getLlmTelemetryReport = function() {
8387
+ return /** @type{?proto.ondewo.nlu.LlmTelemetryReport} */ (
8388
+ jspb.Message.getWrapperField(this, ondewo_nlu_session_pb.LlmTelemetryReport, 4));
8389
+ };
8390
+
8391
+
8392
+ /**
8393
+ * @param {?proto.ondewo.nlu.LlmTelemetryReport|undefined} value
8394
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsResponse} returns this
8395
+ */
8396
+ proto.ondewo.nlu.GetSessionsStatisticsResponse.prototype.setLlmTelemetryReport = function(value) {
8397
+ return jspb.Message.setWrapperField(this, 4, value);
8398
+ };
8399
+
8400
+
8401
+ /**
8402
+ * Clears the message field making it undefined.
8403
+ * @return {!proto.ondewo.nlu.GetSessionsStatisticsResponse} returns this
8404
+ */
8405
+ proto.ondewo.nlu.GetSessionsStatisticsResponse.prototype.clearLlmTelemetryReport = function() {
8406
+ return this.setLlmTelemetryReport(undefined);
8407
+ };
8408
+
8409
+
8410
+ /**
8411
+ * Returns whether this field is set.
8412
+ * @return {boolean}
8413
+ */
8414
+ proto.ondewo.nlu.GetSessionsStatisticsResponse.prototype.hasLlmTelemetryReport = function() {
8415
+ return jspb.Message.getField(this, 4) != null;
8416
+ };
8417
+
8418
+
7763
8419
 
7764
8420
 
7765
8421
 
@@ -20388,7 +21044,27 @@ proto.ondewo.nlu.ReportType = {
20388
21044
  INTENT_PER_LANGUAGE: 1,
20389
21045
  ENTITY_PER_LANGUAGE: 2,
20390
21046
  ENTITY_COLLISION: 3,
20391
- INTENT_GENERAL: 4
21047
+ INTENT_GENERAL: 4,
21048
+ AGENT_LLM_TOKEN_USAGE: 5,
21049
+ AGENT_LLM_MODELS_USED: 6,
21050
+ AGENT_LLM_PROVIDERS_USED: 7,
21051
+ AGENT_LLM_CCAI_SERVICES_USED: 8,
21052
+ AGENT_LLM_AGENTS_USED: 9,
21053
+ AGENT_LLM_ERRORS: 10,
21054
+ AGENT_LLM_CACHE_EFFICIENCY: 11,
21055
+ AGENT_LLM_REASONING_EFFORT: 12,
21056
+ AGENT_LLM_TOP_X_TOOLS: 13,
21057
+ AGENT_LLM_LEAST_X_TOOLS: 14,
21058
+ AGENT_LLM_LATENCY: 15,
21059
+ AGENT_LLM_FINISH_REASONS: 16,
21060
+ AGENT_LLM_TOTAL_STATISTICS: 17,
21061
+ AGENT_LLM_INPUT_TOKEN_USAGE: 18,
21062
+ AGENT_LLM_OUTPUT_TOKEN_USAGE: 19,
21063
+ AGENT_LLM_THINKING_TOKEN_USAGE: 20,
21064
+ AGENT_LLM_TOOL_CALL_TOKEN_USAGE: 21,
21065
+ AGENT_LLM_TOP_X_MODELS: 22,
21066
+ AGENT_LLM_TOP_X_CCAI_SERVICE_PROVIDERS: 23,
21067
+ AGENT_LLM_TOP_X_AGENT_NAMES: 24
20392
21068
  };
20393
21069
 
20394
21070
  /**
@@ -20412,7 +21088,30 @@ proto.ondewo.nlu.SessionsReportType = {
20412
21088
  SESSION_LEAST_X_USERS: 14,
20413
21089
  SESSION_LEAST_X_LABELS: 15,
20414
21090
  SESSION_LEAST_X_TAGS: 16,
20415
- TOTAL_STATISTICS: 17
21091
+ TOTAL_STATISTICS: 17,
21092
+ SESSION_LLM_TOKEN_USAGE: 18,
21093
+ SESSION_LLM_TOOL_CALLS: 19,
21094
+ SESSION_LLM_THINKING: 20,
21095
+ SESSION_LLM_FINISH_REASONS: 21,
21096
+ SESSION_LLM_LATENCY: 22,
21097
+ SESSION_LLM_RAG_METRICS: 23,
21098
+ SESSION_LLM_MODELS_USED: 24,
21099
+ SESSION_LLM_PROVIDERS_USED: 25,
21100
+ SESSION_LLM_CCAI_SERVICES_USED: 26,
21101
+ SESSION_LLM_AGENTS_USED: 27,
21102
+ SESSION_LLM_ERRORS: 28,
21103
+ SESSION_LLM_CACHE_EFFICIENCY: 29,
21104
+ SESSION_LLM_REASONING_EFFORT: 30,
21105
+ SESSION_LLM_TOP_X_TOOLS: 31,
21106
+ SESSION_LLM_LEAST_X_TOOLS: 32,
21107
+ SESSION_LLM_TOTAL_STATISTICS: 33,
21108
+ SESSION_LLM_INPUT_TOKEN_USAGE: 34,
21109
+ SESSION_LLM_OUTPUT_TOKEN_USAGE: 35,
21110
+ SESSION_LLM_THINKING_TOKEN_USAGE: 36,
21111
+ SESSION_LLM_TOOL_CALL_TOKEN_USAGE: 37,
21112
+ SESSION_LLM_TOP_X_MODELS: 38,
21113
+ SESSION_LLM_TOP_X_CCAI_SERVICE_PROVIDERS: 39,
21114
+ SESSION_LLM_TOP_X_AGENT_NAMES: 40
20416
21115
  };
20417
21116
 
20418
21117
  /**