@ondewo/nlu-client-typescript 6.10.0 → 6.12.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.
- package/api/ondewo/nlu/agent_grpc_web_pb.d.ts +12 -0
- package/api/ondewo/nlu/agent_grpc_web_pb.js +63 -0
- package/api/ondewo/nlu/agent_pb.d.ts +252 -0
- package/api/ondewo/nlu/agent_pb.js +2252 -466
- package/api/ondewo/nlu/ccai_project_pb.d.ts +1 -0
- package/api/ondewo/nlu/ccai_project_pb.js +2 -1
- package/api/ondewo/nlu/llm_evaluation_grpc_web_pb.d.ts +885 -0
- package/api/ondewo/nlu/llm_evaluation_grpc_web_pb.js +4481 -0
- package/api/ondewo/nlu/llm_evaluation_pb.d.ts +5425 -0
- package/api/ondewo/nlu/llm_evaluation_pb.js +44104 -0
- package/api/ondewo/nlu/session_grpc_web_pb.js +5 -1
- package/api/ondewo/nlu/session_pb.d.ts +1545 -1
- package/api/ondewo/nlu/session_pb.js +13303 -1305
- package/package.json +1 -1
- package/public-api.d.ts +31 -29
- package/public-api.js +28 -26
|
@@ -171,6 +171,13 @@ export class AgentsClient {
|
|
|
171
171
|
response: ondewo_nlu_agent_pb.GetSessionsStatisticsResponse) => void
|
|
172
172
|
): grpcWeb.ClientReadableStream<ondewo_nlu_agent_pb.GetSessionsStatisticsResponse>;
|
|
173
173
|
|
|
174
|
+
getSessionsStatisticsTimeSeries(
|
|
175
|
+
request: ondewo_nlu_agent_pb.GetSessionsStatisticsTimeSeriesRequest,
|
|
176
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
177
|
+
callback: (err: grpcWeb.RpcError,
|
|
178
|
+
response: ondewo_nlu_agent_pb.GetSessionsStatisticsTimeSeriesResponse) => void
|
|
179
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_agent_pb.GetSessionsStatisticsTimeSeriesResponse>;
|
|
180
|
+
|
|
174
181
|
setAgentStatus(
|
|
175
182
|
request: ondewo_nlu_agent_pb.SetAgentStatusRequest,
|
|
176
183
|
metadata: grpcWeb.Metadata | undefined,
|
|
@@ -419,6 +426,11 @@ export class AgentsPromiseClient {
|
|
|
419
426
|
metadata?: grpcWeb.Metadata
|
|
420
427
|
): Promise<ondewo_nlu_agent_pb.GetSessionsStatisticsResponse>;
|
|
421
428
|
|
|
429
|
+
getSessionsStatisticsTimeSeries(
|
|
430
|
+
request: ondewo_nlu_agent_pb.GetSessionsStatisticsTimeSeriesRequest,
|
|
431
|
+
metadata?: grpcWeb.Metadata
|
|
432
|
+
): Promise<ondewo_nlu_agent_pb.GetSessionsStatisticsTimeSeriesResponse>;
|
|
433
|
+
|
|
422
434
|
setAgentStatus(
|
|
423
435
|
request: ondewo_nlu_agent_pb.SetAgentStatusRequest,
|
|
424
436
|
metadata?: grpcWeb.Metadata
|
|
@@ -41,6 +41,8 @@ var ondewo_nlu_project_role_pb = require('../../ondewo/nlu/project_role_pb.js')
|
|
|
41
41
|
var ondewo_nlu_operations_pb = require('../../ondewo/nlu/operations_pb.js')
|
|
42
42
|
|
|
43
43
|
var ondewo_nlu_session_pb = require('../../ondewo/nlu/session_pb.js')
|
|
44
|
+
|
|
45
|
+
var ondewo_nlu_ccai_project_pb = require('../../ondewo/nlu/ccai_project_pb.js')
|
|
44
46
|
const proto = {};
|
|
45
47
|
proto.ondewo = {};
|
|
46
48
|
proto.ondewo.nlu = require('./agent_pb.js');
|
|
@@ -1500,6 +1502,67 @@ proto.ondewo.nlu.AgentsPromiseClient.prototype.getSessionsStatistics =
|
|
|
1500
1502
|
};
|
|
1501
1503
|
|
|
1502
1504
|
|
|
1505
|
+
/**
|
|
1506
|
+
* @const
|
|
1507
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
1508
|
+
* !proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesRequest,
|
|
1509
|
+
* !proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesResponse>}
|
|
1510
|
+
*/
|
|
1511
|
+
const methodDescriptor_Agents_GetSessionsStatisticsTimeSeries = new grpc.web.MethodDescriptor(
|
|
1512
|
+
'/ondewo.nlu.Agents/GetSessionsStatisticsTimeSeries',
|
|
1513
|
+
grpc.web.MethodType.UNARY,
|
|
1514
|
+
proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesRequest,
|
|
1515
|
+
proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesResponse,
|
|
1516
|
+
/**
|
|
1517
|
+
* @param {!proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesRequest} request
|
|
1518
|
+
* @return {!Uint8Array}
|
|
1519
|
+
*/
|
|
1520
|
+
function(request) {
|
|
1521
|
+
return request.serializeBinary();
|
|
1522
|
+
},
|
|
1523
|
+
proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesResponse.deserializeBinary
|
|
1524
|
+
);
|
|
1525
|
+
|
|
1526
|
+
|
|
1527
|
+
/**
|
|
1528
|
+
* @param {!proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesRequest} request The
|
|
1529
|
+
* request proto
|
|
1530
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1531
|
+
* call metadata
|
|
1532
|
+
* @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesResponse)}
|
|
1533
|
+
* callback The callback function(error, response)
|
|
1534
|
+
* @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesResponse>|undefined}
|
|
1535
|
+
* The XHR Node Readable Stream
|
|
1536
|
+
*/
|
|
1537
|
+
proto.ondewo.nlu.AgentsClient.prototype.getSessionsStatisticsTimeSeries =
|
|
1538
|
+
function(request, metadata, callback) {
|
|
1539
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1540
|
+
'/ondewo.nlu.Agents/GetSessionsStatisticsTimeSeries',
|
|
1541
|
+
request,
|
|
1542
|
+
metadata || {},
|
|
1543
|
+
methodDescriptor_Agents_GetSessionsStatisticsTimeSeries,
|
|
1544
|
+
callback);
|
|
1545
|
+
};
|
|
1546
|
+
|
|
1547
|
+
|
|
1548
|
+
/**
|
|
1549
|
+
* @param {!proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesRequest} request The
|
|
1550
|
+
* request proto
|
|
1551
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
1552
|
+
* call metadata
|
|
1553
|
+
* @return {!Promise<!proto.ondewo.nlu.GetSessionsStatisticsTimeSeriesResponse>}
|
|
1554
|
+
* Promise that resolves to the response
|
|
1555
|
+
*/
|
|
1556
|
+
proto.ondewo.nlu.AgentsPromiseClient.prototype.getSessionsStatisticsTimeSeries =
|
|
1557
|
+
function(request, metadata) {
|
|
1558
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1559
|
+
'/ondewo.nlu.Agents/GetSessionsStatisticsTimeSeries',
|
|
1560
|
+
request,
|
|
1561
|
+
metadata || {},
|
|
1562
|
+
methodDescriptor_Agents_GetSessionsStatisticsTimeSeries);
|
|
1563
|
+
};
|
|
1564
|
+
|
|
1565
|
+
|
|
1503
1566
|
/**
|
|
1504
1567
|
* @const
|
|
1505
1568
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -11,6 +11,7 @@ import * as ondewo_nlu_user_pb from '../../ondewo/nlu/user_pb'; // proto import:
|
|
|
11
11
|
import * as ondewo_nlu_project_role_pb from '../../ondewo/nlu/project_role_pb'; // proto import: "ondewo/nlu/project_role.proto"
|
|
12
12
|
import * as ondewo_nlu_operations_pb from '../../ondewo/nlu/operations_pb'; // proto import: "ondewo/nlu/operations.proto"
|
|
13
13
|
import * as ondewo_nlu_session_pb from '../../ondewo/nlu/session_pb'; // proto import: "ondewo/nlu/session.proto"
|
|
14
|
+
import * as ondewo_nlu_ccai_project_pb from '../../ondewo/nlu/ccai_project_pb'; // proto import: "ondewo/nlu/ccai_project.proto"
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
export class Agent extends jspb.Message {
|
|
@@ -691,6 +692,36 @@ export class GetAgentStatisticsRequest extends jspb.Message {
|
|
|
691
692
|
getType(): ReportType;
|
|
692
693
|
setType(value: ReportType): GetAgentStatisticsRequest;
|
|
693
694
|
|
|
695
|
+
getLlmModelFilterList(): Array<string>;
|
|
696
|
+
setLlmModelFilterList(value: Array<string>): GetAgentStatisticsRequest;
|
|
697
|
+
clearLlmModelFilterList(): GetAgentStatisticsRequest;
|
|
698
|
+
addLlmModelFilter(value: string, index?: number): GetAgentStatisticsRequest;
|
|
699
|
+
|
|
700
|
+
getLlmProviderFilterList(): Array<string>;
|
|
701
|
+
setLlmProviderFilterList(value: Array<string>): GetAgentStatisticsRequest;
|
|
702
|
+
clearLlmProviderFilterList(): GetAgentStatisticsRequest;
|
|
703
|
+
addLlmProviderFilter(value: string, index?: number): GetAgentStatisticsRequest;
|
|
704
|
+
|
|
705
|
+
getLlmAgentNameFilterList(): Array<string>;
|
|
706
|
+
setLlmAgentNameFilterList(value: Array<string>): GetAgentStatisticsRequest;
|
|
707
|
+
clearLlmAgentNameFilterList(): GetAgentStatisticsRequest;
|
|
708
|
+
addLlmAgentNameFilter(value: string, index?: number): GetAgentStatisticsRequest;
|
|
709
|
+
|
|
710
|
+
getLlmGroupBysList(): Array<string>;
|
|
711
|
+
setLlmGroupBysList(value: Array<string>): GetAgentStatisticsRequest;
|
|
712
|
+
clearLlmGroupBysList(): GetAgentStatisticsRequest;
|
|
713
|
+
addLlmGroupBys(value: string, index?: number): GetAgentStatisticsRequest;
|
|
714
|
+
|
|
715
|
+
getFieldMask(): google_protobuf_field_mask_pb.FieldMask | undefined;
|
|
716
|
+
setFieldMask(value?: google_protobuf_field_mask_pb.FieldMask): GetAgentStatisticsRequest;
|
|
717
|
+
hasFieldMask(): boolean;
|
|
718
|
+
clearFieldMask(): GetAgentStatisticsRequest;
|
|
719
|
+
|
|
720
|
+
getLlmCcaiServiceProviderFilterList(): Array<ondewo_nlu_ccai_project_pb.CcaiServiceProvider>;
|
|
721
|
+
setLlmCcaiServiceProviderFilterList(value: Array<ondewo_nlu_ccai_project_pb.CcaiServiceProvider>): GetAgentStatisticsRequest;
|
|
722
|
+
clearLlmCcaiServiceProviderFilterList(): GetAgentStatisticsRequest;
|
|
723
|
+
addLlmCcaiServiceProviderFilter(value: ondewo_nlu_ccai_project_pb.CcaiServiceProvider, index?: number): GetAgentStatisticsRequest;
|
|
724
|
+
|
|
694
725
|
serializeBinary(): Uint8Array;
|
|
695
726
|
toObject(includeInstance?: boolean): GetAgentStatisticsRequest.AsObject;
|
|
696
727
|
static toObject(includeInstance: boolean, msg: GetAgentStatisticsRequest): GetAgentStatisticsRequest.AsObject;
|
|
@@ -705,6 +736,12 @@ export namespace GetAgentStatisticsRequest {
|
|
|
705
736
|
format: ReportFormat,
|
|
706
737
|
languageCode: string,
|
|
707
738
|
type: ReportType,
|
|
739
|
+
llmModelFilterList: Array<string>,
|
|
740
|
+
llmProviderFilterList: Array<string>,
|
|
741
|
+
llmAgentNameFilterList: Array<string>,
|
|
742
|
+
llmGroupBysList: Array<string>,
|
|
743
|
+
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
744
|
+
llmCcaiServiceProviderFilterList: Array<ondewo_nlu_ccai_project_pb.CcaiServiceProvider>,
|
|
708
745
|
}
|
|
709
746
|
}
|
|
710
747
|
|
|
@@ -720,6 +757,11 @@ export class GetAgentStatisticsResponse extends jspb.Message {
|
|
|
720
757
|
getType(): ReportType;
|
|
721
758
|
setType(value: ReportType): GetAgentStatisticsResponse;
|
|
722
759
|
|
|
760
|
+
getLlmTelemetryReport(): ondewo_nlu_session_pb.LlmTelemetryReport | undefined;
|
|
761
|
+
setLlmTelemetryReport(value?: ondewo_nlu_session_pb.LlmTelemetryReport): GetAgentStatisticsResponse;
|
|
762
|
+
hasLlmTelemetryReport(): boolean;
|
|
763
|
+
clearLlmTelemetryReport(): GetAgentStatisticsResponse;
|
|
764
|
+
|
|
723
765
|
serializeBinary(): Uint8Array;
|
|
724
766
|
toObject(includeInstance?: boolean): GetAgentStatisticsResponse.AsObject;
|
|
725
767
|
static toObject(includeInstance: boolean, msg: GetAgentStatisticsResponse): GetAgentStatisticsResponse.AsObject;
|
|
@@ -733,6 +775,7 @@ export namespace GetAgentStatisticsResponse {
|
|
|
733
775
|
reports: Uint8Array | string,
|
|
734
776
|
format: ReportFormat,
|
|
735
777
|
type: ReportType,
|
|
778
|
+
llmTelemetryReport?: ondewo_nlu_session_pb.LlmTelemetryReport.AsObject,
|
|
736
779
|
}
|
|
737
780
|
}
|
|
738
781
|
|
|
@@ -777,6 +820,31 @@ export class GetSessionsStatisticsRequest extends jspb.Message {
|
|
|
777
820
|
getSqlQuery(): string;
|
|
778
821
|
setSqlQuery(value: string): GetSessionsStatisticsRequest;
|
|
779
822
|
|
|
823
|
+
getLlmModelFilterList(): Array<string>;
|
|
824
|
+
setLlmModelFilterList(value: Array<string>): GetSessionsStatisticsRequest;
|
|
825
|
+
clearLlmModelFilterList(): GetSessionsStatisticsRequest;
|
|
826
|
+
addLlmModelFilter(value: string, index?: number): GetSessionsStatisticsRequest;
|
|
827
|
+
|
|
828
|
+
getLlmProviderFilterList(): Array<string>;
|
|
829
|
+
setLlmProviderFilterList(value: Array<string>): GetSessionsStatisticsRequest;
|
|
830
|
+
clearLlmProviderFilterList(): GetSessionsStatisticsRequest;
|
|
831
|
+
addLlmProviderFilter(value: string, index?: number): GetSessionsStatisticsRequest;
|
|
832
|
+
|
|
833
|
+
getLlmAgentNameFilterList(): Array<string>;
|
|
834
|
+
setLlmAgentNameFilterList(value: Array<string>): GetSessionsStatisticsRequest;
|
|
835
|
+
clearLlmAgentNameFilterList(): GetSessionsStatisticsRequest;
|
|
836
|
+
addLlmAgentNameFilter(value: string, index?: number): GetSessionsStatisticsRequest;
|
|
837
|
+
|
|
838
|
+
getLlmToolNameFilterList(): Array<string>;
|
|
839
|
+
setLlmToolNameFilterList(value: Array<string>): GetSessionsStatisticsRequest;
|
|
840
|
+
clearLlmToolNameFilterList(): GetSessionsStatisticsRequest;
|
|
841
|
+
addLlmToolNameFilter(value: string, index?: number): GetSessionsStatisticsRequest;
|
|
842
|
+
|
|
843
|
+
getLlmCcaiServiceProviderFilterList(): Array<ondewo_nlu_ccai_project_pb.CcaiServiceProvider>;
|
|
844
|
+
setLlmCcaiServiceProviderFilterList(value: Array<ondewo_nlu_ccai_project_pb.CcaiServiceProvider>): GetSessionsStatisticsRequest;
|
|
845
|
+
clearLlmCcaiServiceProviderFilterList(): GetSessionsStatisticsRequest;
|
|
846
|
+
addLlmCcaiServiceProviderFilter(value: ondewo_nlu_ccai_project_pb.CcaiServiceProvider, index?: number): GetSessionsStatisticsRequest;
|
|
847
|
+
|
|
780
848
|
serializeBinary(): Uint8Array;
|
|
781
849
|
toObject(includeInstance?: boolean): GetSessionsStatisticsRequest.AsObject;
|
|
782
850
|
static toObject(includeInstance: boolean, msg: GetSessionsStatisticsRequest): GetSessionsStatisticsRequest.AsObject;
|
|
@@ -797,6 +865,11 @@ export namespace GetSessionsStatisticsRequest {
|
|
|
797
865
|
orderBysList: Array<string>,
|
|
798
866
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
799
867
|
sqlQuery: string,
|
|
868
|
+
llmModelFilterList: Array<string>,
|
|
869
|
+
llmProviderFilterList: Array<string>,
|
|
870
|
+
llmAgentNameFilterList: Array<string>,
|
|
871
|
+
llmToolNameFilterList: Array<string>,
|
|
872
|
+
llmCcaiServiceProviderFilterList: Array<ondewo_nlu_ccai_project_pb.CcaiServiceProvider>,
|
|
800
873
|
}
|
|
801
874
|
}
|
|
802
875
|
|
|
@@ -812,6 +885,11 @@ export class GetSessionsStatisticsResponse extends jspb.Message {
|
|
|
812
885
|
getType(): SessionsReportType;
|
|
813
886
|
setType(value: SessionsReportType): GetSessionsStatisticsResponse;
|
|
814
887
|
|
|
888
|
+
getLlmTelemetryReport(): ondewo_nlu_session_pb.LlmTelemetryReport | undefined;
|
|
889
|
+
setLlmTelemetryReport(value?: ondewo_nlu_session_pb.LlmTelemetryReport): GetSessionsStatisticsResponse;
|
|
890
|
+
hasLlmTelemetryReport(): boolean;
|
|
891
|
+
clearLlmTelemetryReport(): GetSessionsStatisticsResponse;
|
|
892
|
+
|
|
815
893
|
serializeBinary(): Uint8Array;
|
|
816
894
|
toObject(includeInstance?: boolean): GetSessionsStatisticsResponse.AsObject;
|
|
817
895
|
static toObject(includeInstance: boolean, msg: GetSessionsStatisticsResponse): GetSessionsStatisticsResponse.AsObject;
|
|
@@ -825,6 +903,135 @@ export namespace GetSessionsStatisticsResponse {
|
|
|
825
903
|
reports: Uint8Array | string,
|
|
826
904
|
format: ReportFormat,
|
|
827
905
|
type: SessionsReportType,
|
|
906
|
+
llmTelemetryReport?: ondewo_nlu_session_pb.LlmTelemetryReport.AsObject,
|
|
907
|
+
}
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
export class GetSessionsStatisticsTimeSeriesRequest extends jspb.Message {
|
|
911
|
+
getParent(): string;
|
|
912
|
+
setParent(value: string): GetSessionsStatisticsTimeSeriesRequest;
|
|
913
|
+
|
|
914
|
+
getType(): SessionsReportType;
|
|
915
|
+
setType(value: SessionsReportType): GetSessionsStatisticsTimeSeriesRequest;
|
|
916
|
+
|
|
917
|
+
getSessionFilter(): ondewo_nlu_session_pb.SessionFilter | undefined;
|
|
918
|
+
setSessionFilter(value?: ondewo_nlu_session_pb.SessionFilter): GetSessionsStatisticsTimeSeriesRequest;
|
|
919
|
+
hasSessionFilter(): boolean;
|
|
920
|
+
clearSessionFilter(): GetSessionsStatisticsTimeSeriesRequest;
|
|
921
|
+
|
|
922
|
+
getBucketWidthSeconds(): number;
|
|
923
|
+
setBucketWidthSeconds(value: number): GetSessionsStatisticsTimeSeriesRequest;
|
|
924
|
+
|
|
925
|
+
getMaxBuckets(): number;
|
|
926
|
+
setMaxBuckets(value: number): GetSessionsStatisticsTimeSeriesRequest;
|
|
927
|
+
|
|
928
|
+
getLlmModelFilterList(): Array<string>;
|
|
929
|
+
setLlmModelFilterList(value: Array<string>): GetSessionsStatisticsTimeSeriesRequest;
|
|
930
|
+
clearLlmModelFilterList(): GetSessionsStatisticsTimeSeriesRequest;
|
|
931
|
+
addLlmModelFilter(value: string, index?: number): GetSessionsStatisticsTimeSeriesRequest;
|
|
932
|
+
|
|
933
|
+
getLlmProviderFilterList(): Array<string>;
|
|
934
|
+
setLlmProviderFilterList(value: Array<string>): GetSessionsStatisticsTimeSeriesRequest;
|
|
935
|
+
clearLlmProviderFilterList(): GetSessionsStatisticsTimeSeriesRequest;
|
|
936
|
+
addLlmProviderFilter(value: string, index?: number): GetSessionsStatisticsTimeSeriesRequest;
|
|
937
|
+
|
|
938
|
+
getLlmAgentNameFilterList(): Array<string>;
|
|
939
|
+
setLlmAgentNameFilterList(value: Array<string>): GetSessionsStatisticsTimeSeriesRequest;
|
|
940
|
+
clearLlmAgentNameFilterList(): GetSessionsStatisticsTimeSeriesRequest;
|
|
941
|
+
addLlmAgentNameFilter(value: string, index?: number): GetSessionsStatisticsTimeSeriesRequest;
|
|
942
|
+
|
|
943
|
+
getLlmToolNameFilterList(): Array<string>;
|
|
944
|
+
setLlmToolNameFilterList(value: Array<string>): GetSessionsStatisticsTimeSeriesRequest;
|
|
945
|
+
clearLlmToolNameFilterList(): GetSessionsStatisticsTimeSeriesRequest;
|
|
946
|
+
addLlmToolNameFilter(value: string, index?: number): GetSessionsStatisticsTimeSeriesRequest;
|
|
947
|
+
|
|
948
|
+
getLlmCcaiServiceProviderFilterList(): Array<ondewo_nlu_ccai_project_pb.CcaiServiceProvider>;
|
|
949
|
+
setLlmCcaiServiceProviderFilterList(value: Array<ondewo_nlu_ccai_project_pb.CcaiServiceProvider>): GetSessionsStatisticsTimeSeriesRequest;
|
|
950
|
+
clearLlmCcaiServiceProviderFilterList(): GetSessionsStatisticsTimeSeriesRequest;
|
|
951
|
+
addLlmCcaiServiceProviderFilter(value: ondewo_nlu_ccai_project_pb.CcaiServiceProvider, index?: number): GetSessionsStatisticsTimeSeriesRequest;
|
|
952
|
+
|
|
953
|
+
getFieldMask(): google_protobuf_field_mask_pb.FieldMask | undefined;
|
|
954
|
+
setFieldMask(value?: google_protobuf_field_mask_pb.FieldMask): GetSessionsStatisticsTimeSeriesRequest;
|
|
955
|
+
hasFieldMask(): boolean;
|
|
956
|
+
clearFieldMask(): GetSessionsStatisticsTimeSeriesRequest;
|
|
957
|
+
|
|
958
|
+
serializeBinary(): Uint8Array;
|
|
959
|
+
toObject(includeInstance?: boolean): GetSessionsStatisticsTimeSeriesRequest.AsObject;
|
|
960
|
+
static toObject(includeInstance: boolean, msg: GetSessionsStatisticsTimeSeriesRequest): GetSessionsStatisticsTimeSeriesRequest.AsObject;
|
|
961
|
+
static serializeBinaryToWriter(message: GetSessionsStatisticsTimeSeriesRequest, writer: jspb.BinaryWriter): void;
|
|
962
|
+
static deserializeBinary(bytes: Uint8Array): GetSessionsStatisticsTimeSeriesRequest;
|
|
963
|
+
static deserializeBinaryFromReader(message: GetSessionsStatisticsTimeSeriesRequest, reader: jspb.BinaryReader): GetSessionsStatisticsTimeSeriesRequest;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
export namespace GetSessionsStatisticsTimeSeriesRequest {
|
|
967
|
+
export type AsObject = {
|
|
968
|
+
parent: string,
|
|
969
|
+
type: SessionsReportType,
|
|
970
|
+
sessionFilter?: ondewo_nlu_session_pb.SessionFilter.AsObject,
|
|
971
|
+
bucketWidthSeconds: number,
|
|
972
|
+
maxBuckets: number,
|
|
973
|
+
llmModelFilterList: Array<string>,
|
|
974
|
+
llmProviderFilterList: Array<string>,
|
|
975
|
+
llmAgentNameFilterList: Array<string>,
|
|
976
|
+
llmToolNameFilterList: Array<string>,
|
|
977
|
+
llmCcaiServiceProviderFilterList: Array<ondewo_nlu_ccai_project_pb.CcaiServiceProvider>,
|
|
978
|
+
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
979
|
+
}
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
export class LlmTelemetryTimeSeriesBucket extends jspb.Message {
|
|
983
|
+
getBucketStart(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
984
|
+
setBucketStart(value?: google_protobuf_timestamp_pb.Timestamp): LlmTelemetryTimeSeriesBucket;
|
|
985
|
+
hasBucketStart(): boolean;
|
|
986
|
+
clearBucketStart(): LlmTelemetryTimeSeriesBucket;
|
|
987
|
+
|
|
988
|
+
getBucketEnd(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
989
|
+
setBucketEnd(value?: google_protobuf_timestamp_pb.Timestamp): LlmTelemetryTimeSeriesBucket;
|
|
990
|
+
hasBucketEnd(): boolean;
|
|
991
|
+
clearBucketEnd(): LlmTelemetryTimeSeriesBucket;
|
|
992
|
+
|
|
993
|
+
getLlmTelemetryReport(): ondewo_nlu_session_pb.LlmTelemetryReport | undefined;
|
|
994
|
+
setLlmTelemetryReport(value?: ondewo_nlu_session_pb.LlmTelemetryReport): LlmTelemetryTimeSeriesBucket;
|
|
995
|
+
hasLlmTelemetryReport(): boolean;
|
|
996
|
+
clearLlmTelemetryReport(): LlmTelemetryTimeSeriesBucket;
|
|
997
|
+
|
|
998
|
+
serializeBinary(): Uint8Array;
|
|
999
|
+
toObject(includeInstance?: boolean): LlmTelemetryTimeSeriesBucket.AsObject;
|
|
1000
|
+
static toObject(includeInstance: boolean, msg: LlmTelemetryTimeSeriesBucket): LlmTelemetryTimeSeriesBucket.AsObject;
|
|
1001
|
+
static serializeBinaryToWriter(message: LlmTelemetryTimeSeriesBucket, writer: jspb.BinaryWriter): void;
|
|
1002
|
+
static deserializeBinary(bytes: Uint8Array): LlmTelemetryTimeSeriesBucket;
|
|
1003
|
+
static deserializeBinaryFromReader(message: LlmTelemetryTimeSeriesBucket, reader: jspb.BinaryReader): LlmTelemetryTimeSeriesBucket;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
export namespace LlmTelemetryTimeSeriesBucket {
|
|
1007
|
+
export type AsObject = {
|
|
1008
|
+
bucketStart?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1009
|
+
bucketEnd?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1010
|
+
llmTelemetryReport?: ondewo_nlu_session_pb.LlmTelemetryReport.AsObject,
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
export class GetSessionsStatisticsTimeSeriesResponse extends jspb.Message {
|
|
1015
|
+
getLlmTelemetryTimeSeriesBucketsList(): Array<LlmTelemetryTimeSeriesBucket>;
|
|
1016
|
+
setLlmTelemetryTimeSeriesBucketsList(value: Array<LlmTelemetryTimeSeriesBucket>): GetSessionsStatisticsTimeSeriesResponse;
|
|
1017
|
+
clearLlmTelemetryTimeSeriesBucketsList(): GetSessionsStatisticsTimeSeriesResponse;
|
|
1018
|
+
addLlmTelemetryTimeSeriesBuckets(value?: LlmTelemetryTimeSeriesBucket, index?: number): LlmTelemetryTimeSeriesBucket;
|
|
1019
|
+
|
|
1020
|
+
getBucketWidthSeconds(): number;
|
|
1021
|
+
setBucketWidthSeconds(value: number): GetSessionsStatisticsTimeSeriesResponse;
|
|
1022
|
+
|
|
1023
|
+
serializeBinary(): Uint8Array;
|
|
1024
|
+
toObject(includeInstance?: boolean): GetSessionsStatisticsTimeSeriesResponse.AsObject;
|
|
1025
|
+
static toObject(includeInstance: boolean, msg: GetSessionsStatisticsTimeSeriesResponse): GetSessionsStatisticsTimeSeriesResponse.AsObject;
|
|
1026
|
+
static serializeBinaryToWriter(message: GetSessionsStatisticsTimeSeriesResponse, writer: jspb.BinaryWriter): void;
|
|
1027
|
+
static deserializeBinary(bytes: Uint8Array): GetSessionsStatisticsTimeSeriesResponse;
|
|
1028
|
+
static deserializeBinaryFromReader(message: GetSessionsStatisticsTimeSeriesResponse, reader: jspb.BinaryReader): GetSessionsStatisticsTimeSeriesResponse;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
export namespace GetSessionsStatisticsTimeSeriesResponse {
|
|
1032
|
+
export type AsObject = {
|
|
1033
|
+
llmTelemetryTimeSeriesBucketsList: Array<LlmTelemetryTimeSeriesBucket.AsObject>,
|
|
1034
|
+
bucketWidthSeconds: number,
|
|
828
1035
|
}
|
|
829
1036
|
}
|
|
830
1037
|
|
|
@@ -2537,6 +2744,27 @@ export enum ReportType {
|
|
|
2537
2744
|
ENTITY_PER_LANGUAGE = 2,
|
|
2538
2745
|
ENTITY_COLLISION = 3,
|
|
2539
2746
|
INTENT_GENERAL = 4,
|
|
2747
|
+
AGENT_LLM_TOKEN_USAGE = 5,
|
|
2748
|
+
AGENT_LLM_MODELS_USED = 6,
|
|
2749
|
+
AGENT_LLM_PROVIDERS_USED = 7,
|
|
2750
|
+
AGENT_LLM_CCAI_SERVICES_USED = 8,
|
|
2751
|
+
AGENT_LLM_AGENTS_USED = 9,
|
|
2752
|
+
AGENT_LLM_ERRORS = 10,
|
|
2753
|
+
AGENT_LLM_CACHE_EFFICIENCY = 11,
|
|
2754
|
+
AGENT_LLM_REASONING_EFFORT = 12,
|
|
2755
|
+
AGENT_LLM_TOP_X_TOOLS = 13,
|
|
2756
|
+
AGENT_LLM_LEAST_X_TOOLS = 14,
|
|
2757
|
+
AGENT_LLM_LATENCY = 15,
|
|
2758
|
+
AGENT_LLM_FINISH_REASONS = 16,
|
|
2759
|
+
AGENT_LLM_TOTAL_STATISTICS = 17,
|
|
2760
|
+
AGENT_LLM_INPUT_TOKEN_USAGE = 18,
|
|
2761
|
+
AGENT_LLM_OUTPUT_TOKEN_USAGE = 19,
|
|
2762
|
+
AGENT_LLM_THINKING_TOKEN_USAGE = 20,
|
|
2763
|
+
AGENT_LLM_TOOL_CALL_TOKEN_USAGE = 21,
|
|
2764
|
+
AGENT_LLM_TOP_X_MODELS = 22,
|
|
2765
|
+
AGENT_LLM_TOP_X_CCAI_SERVICE_PROVIDERS = 23,
|
|
2766
|
+
AGENT_LLM_TOP_X_AGENT_NAMES = 24,
|
|
2767
|
+
AGENT_LLM_SAFETY = 25,
|
|
2540
2768
|
}
|
|
2541
2769
|
export enum SessionsReportType {
|
|
2542
2770
|
SESSIONS = 0,
|
|
@@ -2557,6 +2785,30 @@ export enum SessionsReportType {
|
|
|
2557
2785
|
SESSION_LEAST_X_LABELS = 15,
|
|
2558
2786
|
SESSION_LEAST_X_TAGS = 16,
|
|
2559
2787
|
TOTAL_STATISTICS = 17,
|
|
2788
|
+
SESSION_LLM_TOKEN_USAGE = 18,
|
|
2789
|
+
SESSION_LLM_TOOL_CALLS = 19,
|
|
2790
|
+
SESSION_LLM_THINKING = 20,
|
|
2791
|
+
SESSION_LLM_FINISH_REASONS = 21,
|
|
2792
|
+
SESSION_LLM_LATENCY = 22,
|
|
2793
|
+
SESSION_LLM_RAG_METRICS = 23,
|
|
2794
|
+
SESSION_LLM_MODELS_USED = 24,
|
|
2795
|
+
SESSION_LLM_PROVIDERS_USED = 25,
|
|
2796
|
+
SESSION_LLM_CCAI_SERVICES_USED = 26,
|
|
2797
|
+
SESSION_LLM_AGENTS_USED = 27,
|
|
2798
|
+
SESSION_LLM_ERRORS = 28,
|
|
2799
|
+
SESSION_LLM_CACHE_EFFICIENCY = 29,
|
|
2800
|
+
SESSION_LLM_REASONING_EFFORT = 30,
|
|
2801
|
+
SESSION_LLM_TOP_X_TOOLS = 31,
|
|
2802
|
+
SESSION_LLM_LEAST_X_TOOLS = 32,
|
|
2803
|
+
SESSION_LLM_TOTAL_STATISTICS = 33,
|
|
2804
|
+
SESSION_LLM_INPUT_TOKEN_USAGE = 34,
|
|
2805
|
+
SESSION_LLM_OUTPUT_TOKEN_USAGE = 35,
|
|
2806
|
+
SESSION_LLM_THINKING_TOKEN_USAGE = 36,
|
|
2807
|
+
SESSION_LLM_TOOL_CALL_TOKEN_USAGE = 37,
|
|
2808
|
+
SESSION_LLM_TOP_X_MODELS = 38,
|
|
2809
|
+
SESSION_LLM_TOP_X_CCAI_SERVICE_PROVIDERS = 39,
|
|
2810
|
+
SESSION_LLM_TOP_X_AGENT_NAMES = 40,
|
|
2811
|
+
SESSION_LLM_SAFETY = 41,
|
|
2560
2812
|
}
|
|
2561
2813
|
export enum ReportFormat {
|
|
2562
2814
|
CSV = 0,
|