@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
|
@@ -0,0 +1,885 @@
|
|
|
1
|
+
import * as grpcWeb from 'grpc-web';
|
|
2
|
+
|
|
3
|
+
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb'; // proto import: "google/protobuf/empty.proto"
|
|
4
|
+
import * as ondewo_nlu_llm_evaluation_pb from '../../ondewo/nlu/llm_evaluation_pb'; // proto import: "ondewo/nlu/llm_evaluation.proto"
|
|
5
|
+
import * as ondewo_nlu_operations_pb from '../../ondewo/nlu/operations_pb'; // proto import: "ondewo/nlu/operations.proto"
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
export class LlmEvaluationsClient {
|
|
9
|
+
constructor (hostname: string,
|
|
10
|
+
credentials?: null | { [index: string]: string; },
|
|
11
|
+
options?: null | { [index: string]: any; });
|
|
12
|
+
|
|
13
|
+
llmEvaluationCreateDataset(
|
|
14
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationDatasetRequest,
|
|
15
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
16
|
+
callback: (err: grpcWeb.RpcError,
|
|
17
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationDataset) => void
|
|
18
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationDataset>;
|
|
19
|
+
|
|
20
|
+
llmEvaluationGetDataset(
|
|
21
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationDatasetRequest,
|
|
22
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
23
|
+
callback: (err: grpcWeb.RpcError,
|
|
24
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationDataset) => void
|
|
25
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationDataset>;
|
|
26
|
+
|
|
27
|
+
llmEvaluationListDatasets(
|
|
28
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationDatasetsRequest,
|
|
29
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
30
|
+
callback: (err: grpcWeb.RpcError,
|
|
31
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationDatasetsResponse) => void
|
|
32
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationDatasetsResponse>;
|
|
33
|
+
|
|
34
|
+
llmEvaluationUpdateDataset(
|
|
35
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationDatasetRequest,
|
|
36
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
37
|
+
callback: (err: grpcWeb.RpcError,
|
|
38
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationDataset) => void
|
|
39
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationDataset>;
|
|
40
|
+
|
|
41
|
+
llmEvaluationDeleteDataset(
|
|
42
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationDatasetRequest,
|
|
43
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
44
|
+
callback: (err: grpcWeb.RpcError,
|
|
45
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
46
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
47
|
+
|
|
48
|
+
llmEvaluationAddExample(
|
|
49
|
+
request: ondewo_nlu_llm_evaluation_pb.AddLlmEvaluationExampleRequest,
|
|
50
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
51
|
+
callback: (err: grpcWeb.RpcError,
|
|
52
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationExample) => void
|
|
53
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExample>;
|
|
54
|
+
|
|
55
|
+
llmEvaluationAddExamples(
|
|
56
|
+
request: ondewo_nlu_llm_evaluation_pb.AddLlmEvaluationExamplesRequest,
|
|
57
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
58
|
+
callback: (err: grpcWeb.RpcError,
|
|
59
|
+
response: ondewo_nlu_llm_evaluation_pb.AddLlmEvaluationExamplesResponse) => void
|
|
60
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.AddLlmEvaluationExamplesResponse>;
|
|
61
|
+
|
|
62
|
+
llmEvaluationGetExample(
|
|
63
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationExampleRequest,
|
|
64
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
65
|
+
callback: (err: grpcWeb.RpcError,
|
|
66
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationExample) => void
|
|
67
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExample>;
|
|
68
|
+
|
|
69
|
+
llmEvaluationListExamples(
|
|
70
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExamplesRequest,
|
|
71
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
72
|
+
callback: (err: grpcWeb.RpcError,
|
|
73
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExamplesResponse) => void
|
|
74
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExamplesResponse>;
|
|
75
|
+
|
|
76
|
+
llmEvaluationUpdateExample(
|
|
77
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationExampleRequest,
|
|
78
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
79
|
+
callback: (err: grpcWeb.RpcError,
|
|
80
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationExample) => void
|
|
81
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExample>;
|
|
82
|
+
|
|
83
|
+
llmEvaluationDeleteExample(
|
|
84
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationExampleRequest,
|
|
85
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
86
|
+
callback: (err: grpcWeb.RpcError,
|
|
87
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
88
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
89
|
+
|
|
90
|
+
llmEvaluationRunExperiment(
|
|
91
|
+
request: ondewo_nlu_llm_evaluation_pb.RunLlmEvaluationExperimentRequest,
|
|
92
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
93
|
+
callback: (err: grpcWeb.RpcError,
|
|
94
|
+
response: ondewo_nlu_operations_pb.Operation) => void
|
|
95
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_operations_pb.Operation>;
|
|
96
|
+
|
|
97
|
+
llmEvaluationGetExperiment(
|
|
98
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationExperimentRequest,
|
|
99
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
100
|
+
callback: (err: grpcWeb.RpcError,
|
|
101
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationExperiment) => void
|
|
102
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExperiment>;
|
|
103
|
+
|
|
104
|
+
llmEvaluationListExperiments(
|
|
105
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExperimentsRequest,
|
|
106
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
107
|
+
callback: (err: grpcWeb.RpcError,
|
|
108
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExperimentsResponse) => void
|
|
109
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExperimentsResponse>;
|
|
110
|
+
|
|
111
|
+
llmEvaluationUpdateExperiment(
|
|
112
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationExperimentRequest,
|
|
113
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
114
|
+
callback: (err: grpcWeb.RpcError,
|
|
115
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationExperiment) => void
|
|
116
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExperiment>;
|
|
117
|
+
|
|
118
|
+
llmEvaluationDeleteExperiment(
|
|
119
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationExperimentRequest,
|
|
120
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
121
|
+
callback: (err: grpcWeb.RpcError,
|
|
122
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
123
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
124
|
+
|
|
125
|
+
llmEvaluationCancelExperiment(
|
|
126
|
+
request: ondewo_nlu_llm_evaluation_pb.CancelLlmEvaluationExperimentRequest,
|
|
127
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
128
|
+
callback: (err: grpcWeb.RpcError,
|
|
129
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationExperiment) => void
|
|
130
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExperiment>;
|
|
131
|
+
|
|
132
|
+
llmEvaluationCompareExperiments(
|
|
133
|
+
request: ondewo_nlu_llm_evaluation_pb.CompareLlmEvaluationExperimentsRequest,
|
|
134
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
135
|
+
callback: (err: grpcWeb.RpcError,
|
|
136
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationComparison) => void
|
|
137
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationComparison>;
|
|
138
|
+
|
|
139
|
+
llmEvaluationSubmitFeedback(
|
|
140
|
+
request: ondewo_nlu_llm_evaluation_pb.SubmitLlmEvaluationFeedbackRequest,
|
|
141
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
142
|
+
callback: (err: grpcWeb.RpcError,
|
|
143
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationFeedback) => void
|
|
144
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationFeedback>;
|
|
145
|
+
|
|
146
|
+
llmEvaluationListFeedback(
|
|
147
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationFeedbackRequest,
|
|
148
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
149
|
+
callback: (err: grpcWeb.RpcError,
|
|
150
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationFeedbackResponse) => void
|
|
151
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationFeedbackResponse>;
|
|
152
|
+
|
|
153
|
+
llmEvaluationDeleteFeedback(
|
|
154
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationFeedbackRequest,
|
|
155
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
156
|
+
callback: (err: grpcWeb.RpcError,
|
|
157
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
158
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
159
|
+
|
|
160
|
+
llmEvaluationUpdateFeedback(
|
|
161
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationFeedbackRequest,
|
|
162
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
163
|
+
callback: (err: grpcWeb.RpcError,
|
|
164
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationFeedback) => void
|
|
165
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationFeedback>;
|
|
166
|
+
|
|
167
|
+
llmEvaluationCreateReleaseGate(
|
|
168
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationReleaseGateRequest,
|
|
169
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
170
|
+
callback: (err: grpcWeb.RpcError,
|
|
171
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGate) => void
|
|
172
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGate>;
|
|
173
|
+
|
|
174
|
+
llmEvaluationGetReleaseGate(
|
|
175
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationReleaseGateRequest,
|
|
176
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
177
|
+
callback: (err: grpcWeb.RpcError,
|
|
178
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGate) => void
|
|
179
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGate>;
|
|
180
|
+
|
|
181
|
+
llmEvaluationListReleaseGates(
|
|
182
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGatesRequest,
|
|
183
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
184
|
+
callback: (err: grpcWeb.RpcError,
|
|
185
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGatesResponse) => void
|
|
186
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGatesResponse>;
|
|
187
|
+
|
|
188
|
+
llmEvaluationUpdateReleaseGate(
|
|
189
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationReleaseGateRequest,
|
|
190
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
191
|
+
callback: (err: grpcWeb.RpcError,
|
|
192
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGate) => void
|
|
193
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGate>;
|
|
194
|
+
|
|
195
|
+
llmEvaluationDeleteReleaseGate(
|
|
196
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationReleaseGateRequest,
|
|
197
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
198
|
+
callback: (err: grpcWeb.RpcError,
|
|
199
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
200
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
201
|
+
|
|
202
|
+
llmEvaluationRunReleaseGate(
|
|
203
|
+
request: ondewo_nlu_llm_evaluation_pb.RunLlmEvaluationReleaseGateRequest,
|
|
204
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
205
|
+
callback: (err: grpcWeb.RpcError,
|
|
206
|
+
response: ondewo_nlu_operations_pb.Operation) => void
|
|
207
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_operations_pb.Operation>;
|
|
208
|
+
|
|
209
|
+
llmEvaluationGetReleaseGateRun(
|
|
210
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationReleaseGateRunRequest,
|
|
211
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
212
|
+
callback: (err: grpcWeb.RpcError,
|
|
213
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGateRun) => void
|
|
214
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGateRun>;
|
|
215
|
+
|
|
216
|
+
llmEvaluationListReleaseGateRuns(
|
|
217
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGateRunsRequest,
|
|
218
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
219
|
+
callback: (err: grpcWeb.RpcError,
|
|
220
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGateRunsResponse) => void
|
|
221
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGateRunsResponse>;
|
|
222
|
+
|
|
223
|
+
llmEvaluationCreateScorecard(
|
|
224
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationScorecardRequest,
|
|
225
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
226
|
+
callback: (err: grpcWeb.RpcError,
|
|
227
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationScorecard) => void
|
|
228
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationScorecard>;
|
|
229
|
+
|
|
230
|
+
llmEvaluationGetScorecard(
|
|
231
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationScorecardRequest,
|
|
232
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
233
|
+
callback: (err: grpcWeb.RpcError,
|
|
234
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationScorecard) => void
|
|
235
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationScorecard>;
|
|
236
|
+
|
|
237
|
+
llmEvaluationListScorecards(
|
|
238
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationScorecardsRequest,
|
|
239
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
240
|
+
callback: (err: grpcWeb.RpcError,
|
|
241
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationScorecardsResponse) => void
|
|
242
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationScorecardsResponse>;
|
|
243
|
+
|
|
244
|
+
llmEvaluationUpdateScorecard(
|
|
245
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationScorecardRequest,
|
|
246
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
247
|
+
callback: (err: grpcWeb.RpcError,
|
|
248
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationScorecard) => void
|
|
249
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationScorecard>;
|
|
250
|
+
|
|
251
|
+
llmEvaluationDeleteScorecard(
|
|
252
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationScorecardRequest,
|
|
253
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
254
|
+
callback: (err: grpcWeb.RpcError,
|
|
255
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
256
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
257
|
+
|
|
258
|
+
llmEvaluationGetProjectSettings(
|
|
259
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationProjectSettingsRequest,
|
|
260
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
261
|
+
callback: (err: grpcWeb.RpcError,
|
|
262
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationProjectSettings) => void
|
|
263
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationProjectSettings>;
|
|
264
|
+
|
|
265
|
+
llmEvaluationUpdateProjectSettings(
|
|
266
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationProjectSettingsRequest,
|
|
267
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
268
|
+
callback: (err: grpcWeb.RpcError,
|
|
269
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationProjectSettings) => void
|
|
270
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationProjectSettings>;
|
|
271
|
+
|
|
272
|
+
llmEvaluationListEvaluators(
|
|
273
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationEvaluatorsRequest,
|
|
274
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
275
|
+
callback: (err: grpcWeb.RpcError,
|
|
276
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationEvaluatorsResponse) => void
|
|
277
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationEvaluatorsResponse>;
|
|
278
|
+
|
|
279
|
+
llmEvaluationCreateExamplesFromSession(
|
|
280
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationExamplesFromSessionRequest,
|
|
281
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
282
|
+
callback: (err: grpcWeb.RpcError,
|
|
283
|
+
response: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationExamplesFromSessionResponse) => void
|
|
284
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationExamplesFromSessionResponse>;
|
|
285
|
+
|
|
286
|
+
llmEvaluationSimulateConversations(
|
|
287
|
+
request: ondewo_nlu_llm_evaluation_pb.SimulateLlmEvaluationConversationsRequest,
|
|
288
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
289
|
+
callback: (err: grpcWeb.RpcError,
|
|
290
|
+
response: ondewo_nlu_operations_pb.Operation) => void
|
|
291
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_operations_pb.Operation>;
|
|
292
|
+
|
|
293
|
+
llmEvaluationCreateSchedule(
|
|
294
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationScheduleRequest,
|
|
295
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
296
|
+
callback: (err: grpcWeb.RpcError,
|
|
297
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationSchedule) => void
|
|
298
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationSchedule>;
|
|
299
|
+
|
|
300
|
+
llmEvaluationGetSchedule(
|
|
301
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationScheduleRequest,
|
|
302
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
303
|
+
callback: (err: grpcWeb.RpcError,
|
|
304
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationSchedule) => void
|
|
305
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationSchedule>;
|
|
306
|
+
|
|
307
|
+
llmEvaluationListSchedules(
|
|
308
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationSchedulesRequest,
|
|
309
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
310
|
+
callback: (err: grpcWeb.RpcError,
|
|
311
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationSchedulesResponse) => void
|
|
312
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationSchedulesResponse>;
|
|
313
|
+
|
|
314
|
+
llmEvaluationUpdateSchedule(
|
|
315
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationScheduleRequest,
|
|
316
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
317
|
+
callback: (err: grpcWeb.RpcError,
|
|
318
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationSchedule) => void
|
|
319
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationSchedule>;
|
|
320
|
+
|
|
321
|
+
llmEvaluationDeleteSchedule(
|
|
322
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationScheduleRequest,
|
|
323
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
324
|
+
callback: (err: grpcWeb.RpcError,
|
|
325
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
326
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
327
|
+
|
|
328
|
+
llmEvaluationCreateReport(
|
|
329
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationReportRequest,
|
|
330
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
331
|
+
callback: (err: grpcWeb.RpcError,
|
|
332
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationReport) => void
|
|
333
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReport>;
|
|
334
|
+
|
|
335
|
+
llmEvaluationGetReport(
|
|
336
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationReportRequest,
|
|
337
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
338
|
+
callback: (err: grpcWeb.RpcError,
|
|
339
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationReport) => void
|
|
340
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReport>;
|
|
341
|
+
|
|
342
|
+
llmEvaluationListReports(
|
|
343
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReportsRequest,
|
|
344
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
345
|
+
callback: (err: grpcWeb.RpcError,
|
|
346
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReportsResponse) => void
|
|
347
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReportsResponse>;
|
|
348
|
+
|
|
349
|
+
llmEvaluationDeleteReport(
|
|
350
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationReportRequest,
|
|
351
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
352
|
+
callback: (err: grpcWeb.RpcError,
|
|
353
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
354
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
355
|
+
|
|
356
|
+
llmEvaluationCreateAbExperiment(
|
|
357
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationAbExperimentRequest,
|
|
358
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
359
|
+
callback: (err: grpcWeb.RpcError,
|
|
360
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment) => void
|
|
361
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
362
|
+
|
|
363
|
+
llmEvaluationGetAbExperiment(
|
|
364
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbExperimentRequest,
|
|
365
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
366
|
+
callback: (err: grpcWeb.RpcError,
|
|
367
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment) => void
|
|
368
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
369
|
+
|
|
370
|
+
llmEvaluationListAbExperiments(
|
|
371
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbExperimentsRequest,
|
|
372
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
373
|
+
callback: (err: grpcWeb.RpcError,
|
|
374
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbExperimentsResponse) => void
|
|
375
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbExperimentsResponse>;
|
|
376
|
+
|
|
377
|
+
llmEvaluationUpdateAbExperiment(
|
|
378
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationAbExperimentRequest,
|
|
379
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
380
|
+
callback: (err: grpcWeb.RpcError,
|
|
381
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment) => void
|
|
382
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
383
|
+
|
|
384
|
+
llmEvaluationDeleteAbExperiment(
|
|
385
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationAbExperimentRequest,
|
|
386
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
387
|
+
callback: (err: grpcWeb.RpcError,
|
|
388
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
389
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
390
|
+
|
|
391
|
+
llmEvaluationStartAbExperiment(
|
|
392
|
+
request: ondewo_nlu_llm_evaluation_pb.StartLlmEvaluationAbExperimentRequest,
|
|
393
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
394
|
+
callback: (err: grpcWeb.RpcError,
|
|
395
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment) => void
|
|
396
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
397
|
+
|
|
398
|
+
llmEvaluationStopAbExperiment(
|
|
399
|
+
request: ondewo_nlu_llm_evaluation_pb.StopLlmEvaluationAbExperimentRequest,
|
|
400
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
401
|
+
callback: (err: grpcWeb.RpcError,
|
|
402
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment) => void
|
|
403
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
404
|
+
|
|
405
|
+
llmEvaluationGetAbExperimentResults(
|
|
406
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbExperimentResultsRequest,
|
|
407
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
408
|
+
callback: (err: grpcWeb.RpcError,
|
|
409
|
+
response: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbExperimentResultsResponse) => void
|
|
410
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbExperimentResultsResponse>;
|
|
411
|
+
|
|
412
|
+
llmEvaluationGetAbRolloutRecommendation(
|
|
413
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbRolloutRecommendationRequest,
|
|
414
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
415
|
+
callback: (err: grpcWeb.RpcError,
|
|
416
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbRolloutRecommendation) => void
|
|
417
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbRolloutRecommendation>;
|
|
418
|
+
|
|
419
|
+
llmEvaluationApplyAbRollout(
|
|
420
|
+
request: ondewo_nlu_llm_evaluation_pb.ApplyLlmEvaluationAbRolloutRequest,
|
|
421
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
422
|
+
callback: (err: grpcWeb.RpcError,
|
|
423
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbRolloutDecision) => void
|
|
424
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbRolloutDecision>;
|
|
425
|
+
|
|
426
|
+
llmEvaluationGetAbRolloutDecision(
|
|
427
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbRolloutDecisionRequest,
|
|
428
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
429
|
+
callback: (err: grpcWeb.RpcError,
|
|
430
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbRolloutDecision) => void
|
|
431
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbRolloutDecision>;
|
|
432
|
+
|
|
433
|
+
llmEvaluationListAbRolloutDecisions(
|
|
434
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbRolloutDecisionsRequest,
|
|
435
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
436
|
+
callback: (err: grpcWeb.RpcError,
|
|
437
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbRolloutDecisionsResponse) => void
|
|
438
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbRolloutDecisionsResponse>;
|
|
439
|
+
|
|
440
|
+
llmEvaluationCreateOnlineConfig(
|
|
441
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationOnlineConfigRequest,
|
|
442
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
443
|
+
callback: (err: grpcWeb.RpcError,
|
|
444
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineConfig) => void
|
|
445
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineConfig>;
|
|
446
|
+
|
|
447
|
+
llmEvaluationGetOnlineConfig(
|
|
448
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationOnlineConfigRequest,
|
|
449
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
450
|
+
callback: (err: grpcWeb.RpcError,
|
|
451
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineConfig) => void
|
|
452
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineConfig>;
|
|
453
|
+
|
|
454
|
+
llmEvaluationListOnlineConfigs(
|
|
455
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineConfigsRequest,
|
|
456
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
457
|
+
callback: (err: grpcWeb.RpcError,
|
|
458
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineConfigsResponse) => void
|
|
459
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineConfigsResponse>;
|
|
460
|
+
|
|
461
|
+
llmEvaluationUpdateOnlineConfig(
|
|
462
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationOnlineConfigRequest,
|
|
463
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
464
|
+
callback: (err: grpcWeb.RpcError,
|
|
465
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineConfig) => void
|
|
466
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineConfig>;
|
|
467
|
+
|
|
468
|
+
llmEvaluationDeleteOnlineConfig(
|
|
469
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationOnlineConfigRequest,
|
|
470
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
471
|
+
callback: (err: grpcWeb.RpcError,
|
|
472
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
473
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
474
|
+
|
|
475
|
+
llmEvaluationGetOnlineResult(
|
|
476
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationOnlineResultRequest,
|
|
477
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
478
|
+
callback: (err: grpcWeb.RpcError,
|
|
479
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineResult) => void
|
|
480
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineResult>;
|
|
481
|
+
|
|
482
|
+
llmEvaluationListOnlineResults(
|
|
483
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineResultsRequest,
|
|
484
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
485
|
+
callback: (err: grpcWeb.RpcError,
|
|
486
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineResultsResponse) => void
|
|
487
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineResultsResponse>;
|
|
488
|
+
|
|
489
|
+
llmEvaluationGetAnnotationQueueItem(
|
|
490
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAnnotationQueueItemRequest,
|
|
491
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
492
|
+
callback: (err: grpcWeb.RpcError,
|
|
493
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAnnotationQueueItem) => void
|
|
494
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAnnotationQueueItem>;
|
|
495
|
+
|
|
496
|
+
llmEvaluationListAnnotationQueueItems(
|
|
497
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAnnotationQueueItemsRequest,
|
|
498
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
499
|
+
callback: (err: grpcWeb.RpcError,
|
|
500
|
+
response: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAnnotationQueueItemsResponse) => void
|
|
501
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAnnotationQueueItemsResponse>;
|
|
502
|
+
|
|
503
|
+
llmEvaluationUpdateAnnotationQueueItem(
|
|
504
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationAnnotationQueueItemRequest,
|
|
505
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
506
|
+
callback: (err: grpcWeb.RpcError,
|
|
507
|
+
response: ondewo_nlu_llm_evaluation_pb.LlmEvaluationAnnotationQueueItem) => void
|
|
508
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAnnotationQueueItem>;
|
|
509
|
+
|
|
510
|
+
llmEvaluationPromoteAnnotationQueueItem(
|
|
511
|
+
request: ondewo_nlu_llm_evaluation_pb.PromoteLlmEvaluationAnnotationQueueItemRequest,
|
|
512
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
513
|
+
callback: (err: grpcWeb.RpcError,
|
|
514
|
+
response: ondewo_nlu_llm_evaluation_pb.PromoteLlmEvaluationAnnotationQueueItemResponse) => void
|
|
515
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_llm_evaluation_pb.PromoteLlmEvaluationAnnotationQueueItemResponse>;
|
|
516
|
+
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
export class LlmEvaluationsPromiseClient {
|
|
520
|
+
constructor (hostname: string,
|
|
521
|
+
credentials?: null | { [index: string]: string; },
|
|
522
|
+
options?: null | { [index: string]: any; });
|
|
523
|
+
|
|
524
|
+
llmEvaluationCreateDataset(
|
|
525
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationDatasetRequest,
|
|
526
|
+
metadata?: grpcWeb.Metadata
|
|
527
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationDataset>;
|
|
528
|
+
|
|
529
|
+
llmEvaluationGetDataset(
|
|
530
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationDatasetRequest,
|
|
531
|
+
metadata?: grpcWeb.Metadata
|
|
532
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationDataset>;
|
|
533
|
+
|
|
534
|
+
llmEvaluationListDatasets(
|
|
535
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationDatasetsRequest,
|
|
536
|
+
metadata?: grpcWeb.Metadata
|
|
537
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationDatasetsResponse>;
|
|
538
|
+
|
|
539
|
+
llmEvaluationUpdateDataset(
|
|
540
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationDatasetRequest,
|
|
541
|
+
metadata?: grpcWeb.Metadata
|
|
542
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationDataset>;
|
|
543
|
+
|
|
544
|
+
llmEvaluationDeleteDataset(
|
|
545
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationDatasetRequest,
|
|
546
|
+
metadata?: grpcWeb.Metadata
|
|
547
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
548
|
+
|
|
549
|
+
llmEvaluationAddExample(
|
|
550
|
+
request: ondewo_nlu_llm_evaluation_pb.AddLlmEvaluationExampleRequest,
|
|
551
|
+
metadata?: grpcWeb.Metadata
|
|
552
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExample>;
|
|
553
|
+
|
|
554
|
+
llmEvaluationAddExamples(
|
|
555
|
+
request: ondewo_nlu_llm_evaluation_pb.AddLlmEvaluationExamplesRequest,
|
|
556
|
+
metadata?: grpcWeb.Metadata
|
|
557
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.AddLlmEvaluationExamplesResponse>;
|
|
558
|
+
|
|
559
|
+
llmEvaluationGetExample(
|
|
560
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationExampleRequest,
|
|
561
|
+
metadata?: grpcWeb.Metadata
|
|
562
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExample>;
|
|
563
|
+
|
|
564
|
+
llmEvaluationListExamples(
|
|
565
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExamplesRequest,
|
|
566
|
+
metadata?: grpcWeb.Metadata
|
|
567
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExamplesResponse>;
|
|
568
|
+
|
|
569
|
+
llmEvaluationUpdateExample(
|
|
570
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationExampleRequest,
|
|
571
|
+
metadata?: grpcWeb.Metadata
|
|
572
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExample>;
|
|
573
|
+
|
|
574
|
+
llmEvaluationDeleteExample(
|
|
575
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationExampleRequest,
|
|
576
|
+
metadata?: grpcWeb.Metadata
|
|
577
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
578
|
+
|
|
579
|
+
llmEvaluationRunExperiment(
|
|
580
|
+
request: ondewo_nlu_llm_evaluation_pb.RunLlmEvaluationExperimentRequest,
|
|
581
|
+
metadata?: grpcWeb.Metadata
|
|
582
|
+
): Promise<ondewo_nlu_operations_pb.Operation>;
|
|
583
|
+
|
|
584
|
+
llmEvaluationGetExperiment(
|
|
585
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationExperimentRequest,
|
|
586
|
+
metadata?: grpcWeb.Metadata
|
|
587
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExperiment>;
|
|
588
|
+
|
|
589
|
+
llmEvaluationListExperiments(
|
|
590
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExperimentsRequest,
|
|
591
|
+
metadata?: grpcWeb.Metadata
|
|
592
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationExperimentsResponse>;
|
|
593
|
+
|
|
594
|
+
llmEvaluationUpdateExperiment(
|
|
595
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationExperimentRequest,
|
|
596
|
+
metadata?: grpcWeb.Metadata
|
|
597
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExperiment>;
|
|
598
|
+
|
|
599
|
+
llmEvaluationDeleteExperiment(
|
|
600
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationExperimentRequest,
|
|
601
|
+
metadata?: grpcWeb.Metadata
|
|
602
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
603
|
+
|
|
604
|
+
llmEvaluationCancelExperiment(
|
|
605
|
+
request: ondewo_nlu_llm_evaluation_pb.CancelLlmEvaluationExperimentRequest,
|
|
606
|
+
metadata?: grpcWeb.Metadata
|
|
607
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationExperiment>;
|
|
608
|
+
|
|
609
|
+
llmEvaluationCompareExperiments(
|
|
610
|
+
request: ondewo_nlu_llm_evaluation_pb.CompareLlmEvaluationExperimentsRequest,
|
|
611
|
+
metadata?: grpcWeb.Metadata
|
|
612
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationComparison>;
|
|
613
|
+
|
|
614
|
+
llmEvaluationSubmitFeedback(
|
|
615
|
+
request: ondewo_nlu_llm_evaluation_pb.SubmitLlmEvaluationFeedbackRequest,
|
|
616
|
+
metadata?: grpcWeb.Metadata
|
|
617
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationFeedback>;
|
|
618
|
+
|
|
619
|
+
llmEvaluationListFeedback(
|
|
620
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationFeedbackRequest,
|
|
621
|
+
metadata?: grpcWeb.Metadata
|
|
622
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationFeedbackResponse>;
|
|
623
|
+
|
|
624
|
+
llmEvaluationDeleteFeedback(
|
|
625
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationFeedbackRequest,
|
|
626
|
+
metadata?: grpcWeb.Metadata
|
|
627
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
628
|
+
|
|
629
|
+
llmEvaluationUpdateFeedback(
|
|
630
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationFeedbackRequest,
|
|
631
|
+
metadata?: grpcWeb.Metadata
|
|
632
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationFeedback>;
|
|
633
|
+
|
|
634
|
+
llmEvaluationCreateReleaseGate(
|
|
635
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationReleaseGateRequest,
|
|
636
|
+
metadata?: grpcWeb.Metadata
|
|
637
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGate>;
|
|
638
|
+
|
|
639
|
+
llmEvaluationGetReleaseGate(
|
|
640
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationReleaseGateRequest,
|
|
641
|
+
metadata?: grpcWeb.Metadata
|
|
642
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGate>;
|
|
643
|
+
|
|
644
|
+
llmEvaluationListReleaseGates(
|
|
645
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGatesRequest,
|
|
646
|
+
metadata?: grpcWeb.Metadata
|
|
647
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGatesResponse>;
|
|
648
|
+
|
|
649
|
+
llmEvaluationUpdateReleaseGate(
|
|
650
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationReleaseGateRequest,
|
|
651
|
+
metadata?: grpcWeb.Metadata
|
|
652
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGate>;
|
|
653
|
+
|
|
654
|
+
llmEvaluationDeleteReleaseGate(
|
|
655
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationReleaseGateRequest,
|
|
656
|
+
metadata?: grpcWeb.Metadata
|
|
657
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
658
|
+
|
|
659
|
+
llmEvaluationRunReleaseGate(
|
|
660
|
+
request: ondewo_nlu_llm_evaluation_pb.RunLlmEvaluationReleaseGateRequest,
|
|
661
|
+
metadata?: grpcWeb.Metadata
|
|
662
|
+
): Promise<ondewo_nlu_operations_pb.Operation>;
|
|
663
|
+
|
|
664
|
+
llmEvaluationGetReleaseGateRun(
|
|
665
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationReleaseGateRunRequest,
|
|
666
|
+
metadata?: grpcWeb.Metadata
|
|
667
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReleaseGateRun>;
|
|
668
|
+
|
|
669
|
+
llmEvaluationListReleaseGateRuns(
|
|
670
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGateRunsRequest,
|
|
671
|
+
metadata?: grpcWeb.Metadata
|
|
672
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReleaseGateRunsResponse>;
|
|
673
|
+
|
|
674
|
+
llmEvaluationCreateScorecard(
|
|
675
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationScorecardRequest,
|
|
676
|
+
metadata?: grpcWeb.Metadata
|
|
677
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationScorecard>;
|
|
678
|
+
|
|
679
|
+
llmEvaluationGetScorecard(
|
|
680
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationScorecardRequest,
|
|
681
|
+
metadata?: grpcWeb.Metadata
|
|
682
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationScorecard>;
|
|
683
|
+
|
|
684
|
+
llmEvaluationListScorecards(
|
|
685
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationScorecardsRequest,
|
|
686
|
+
metadata?: grpcWeb.Metadata
|
|
687
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationScorecardsResponse>;
|
|
688
|
+
|
|
689
|
+
llmEvaluationUpdateScorecard(
|
|
690
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationScorecardRequest,
|
|
691
|
+
metadata?: grpcWeb.Metadata
|
|
692
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationScorecard>;
|
|
693
|
+
|
|
694
|
+
llmEvaluationDeleteScorecard(
|
|
695
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationScorecardRequest,
|
|
696
|
+
metadata?: grpcWeb.Metadata
|
|
697
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
698
|
+
|
|
699
|
+
llmEvaluationGetProjectSettings(
|
|
700
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationProjectSettingsRequest,
|
|
701
|
+
metadata?: grpcWeb.Metadata
|
|
702
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationProjectSettings>;
|
|
703
|
+
|
|
704
|
+
llmEvaluationUpdateProjectSettings(
|
|
705
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationProjectSettingsRequest,
|
|
706
|
+
metadata?: grpcWeb.Metadata
|
|
707
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationProjectSettings>;
|
|
708
|
+
|
|
709
|
+
llmEvaluationListEvaluators(
|
|
710
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationEvaluatorsRequest,
|
|
711
|
+
metadata?: grpcWeb.Metadata
|
|
712
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationEvaluatorsResponse>;
|
|
713
|
+
|
|
714
|
+
llmEvaluationCreateExamplesFromSession(
|
|
715
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationExamplesFromSessionRequest,
|
|
716
|
+
metadata?: grpcWeb.Metadata
|
|
717
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationExamplesFromSessionResponse>;
|
|
718
|
+
|
|
719
|
+
llmEvaluationSimulateConversations(
|
|
720
|
+
request: ondewo_nlu_llm_evaluation_pb.SimulateLlmEvaluationConversationsRequest,
|
|
721
|
+
metadata?: grpcWeb.Metadata
|
|
722
|
+
): Promise<ondewo_nlu_operations_pb.Operation>;
|
|
723
|
+
|
|
724
|
+
llmEvaluationCreateSchedule(
|
|
725
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationScheduleRequest,
|
|
726
|
+
metadata?: grpcWeb.Metadata
|
|
727
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationSchedule>;
|
|
728
|
+
|
|
729
|
+
llmEvaluationGetSchedule(
|
|
730
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationScheduleRequest,
|
|
731
|
+
metadata?: grpcWeb.Metadata
|
|
732
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationSchedule>;
|
|
733
|
+
|
|
734
|
+
llmEvaluationListSchedules(
|
|
735
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationSchedulesRequest,
|
|
736
|
+
metadata?: grpcWeb.Metadata
|
|
737
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationSchedulesResponse>;
|
|
738
|
+
|
|
739
|
+
llmEvaluationUpdateSchedule(
|
|
740
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationScheduleRequest,
|
|
741
|
+
metadata?: grpcWeb.Metadata
|
|
742
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationSchedule>;
|
|
743
|
+
|
|
744
|
+
llmEvaluationDeleteSchedule(
|
|
745
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationScheduleRequest,
|
|
746
|
+
metadata?: grpcWeb.Metadata
|
|
747
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
748
|
+
|
|
749
|
+
llmEvaluationCreateReport(
|
|
750
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationReportRequest,
|
|
751
|
+
metadata?: grpcWeb.Metadata
|
|
752
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReport>;
|
|
753
|
+
|
|
754
|
+
llmEvaluationGetReport(
|
|
755
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationReportRequest,
|
|
756
|
+
metadata?: grpcWeb.Metadata
|
|
757
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationReport>;
|
|
758
|
+
|
|
759
|
+
llmEvaluationListReports(
|
|
760
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReportsRequest,
|
|
761
|
+
metadata?: grpcWeb.Metadata
|
|
762
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationReportsResponse>;
|
|
763
|
+
|
|
764
|
+
llmEvaluationDeleteReport(
|
|
765
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationReportRequest,
|
|
766
|
+
metadata?: grpcWeb.Metadata
|
|
767
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
768
|
+
|
|
769
|
+
llmEvaluationCreateAbExperiment(
|
|
770
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationAbExperimentRequest,
|
|
771
|
+
metadata?: grpcWeb.Metadata
|
|
772
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
773
|
+
|
|
774
|
+
llmEvaluationGetAbExperiment(
|
|
775
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbExperimentRequest,
|
|
776
|
+
metadata?: grpcWeb.Metadata
|
|
777
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
778
|
+
|
|
779
|
+
llmEvaluationListAbExperiments(
|
|
780
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbExperimentsRequest,
|
|
781
|
+
metadata?: grpcWeb.Metadata
|
|
782
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbExperimentsResponse>;
|
|
783
|
+
|
|
784
|
+
llmEvaluationUpdateAbExperiment(
|
|
785
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationAbExperimentRequest,
|
|
786
|
+
metadata?: grpcWeb.Metadata
|
|
787
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
788
|
+
|
|
789
|
+
llmEvaluationDeleteAbExperiment(
|
|
790
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationAbExperimentRequest,
|
|
791
|
+
metadata?: grpcWeb.Metadata
|
|
792
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
793
|
+
|
|
794
|
+
llmEvaluationStartAbExperiment(
|
|
795
|
+
request: ondewo_nlu_llm_evaluation_pb.StartLlmEvaluationAbExperimentRequest,
|
|
796
|
+
metadata?: grpcWeb.Metadata
|
|
797
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
798
|
+
|
|
799
|
+
llmEvaluationStopAbExperiment(
|
|
800
|
+
request: ondewo_nlu_llm_evaluation_pb.StopLlmEvaluationAbExperimentRequest,
|
|
801
|
+
metadata?: grpcWeb.Metadata
|
|
802
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbExperiment>;
|
|
803
|
+
|
|
804
|
+
llmEvaluationGetAbExperimentResults(
|
|
805
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbExperimentResultsRequest,
|
|
806
|
+
metadata?: grpcWeb.Metadata
|
|
807
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbExperimentResultsResponse>;
|
|
808
|
+
|
|
809
|
+
llmEvaluationGetAbRolloutRecommendation(
|
|
810
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbRolloutRecommendationRequest,
|
|
811
|
+
metadata?: grpcWeb.Metadata
|
|
812
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbRolloutRecommendation>;
|
|
813
|
+
|
|
814
|
+
llmEvaluationApplyAbRollout(
|
|
815
|
+
request: ondewo_nlu_llm_evaluation_pb.ApplyLlmEvaluationAbRolloutRequest,
|
|
816
|
+
metadata?: grpcWeb.Metadata
|
|
817
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbRolloutDecision>;
|
|
818
|
+
|
|
819
|
+
llmEvaluationGetAbRolloutDecision(
|
|
820
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAbRolloutDecisionRequest,
|
|
821
|
+
metadata?: grpcWeb.Metadata
|
|
822
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAbRolloutDecision>;
|
|
823
|
+
|
|
824
|
+
llmEvaluationListAbRolloutDecisions(
|
|
825
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbRolloutDecisionsRequest,
|
|
826
|
+
metadata?: grpcWeb.Metadata
|
|
827
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAbRolloutDecisionsResponse>;
|
|
828
|
+
|
|
829
|
+
llmEvaluationCreateOnlineConfig(
|
|
830
|
+
request: ondewo_nlu_llm_evaluation_pb.CreateLlmEvaluationOnlineConfigRequest,
|
|
831
|
+
metadata?: grpcWeb.Metadata
|
|
832
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineConfig>;
|
|
833
|
+
|
|
834
|
+
llmEvaluationGetOnlineConfig(
|
|
835
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationOnlineConfigRequest,
|
|
836
|
+
metadata?: grpcWeb.Metadata
|
|
837
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineConfig>;
|
|
838
|
+
|
|
839
|
+
llmEvaluationListOnlineConfigs(
|
|
840
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineConfigsRequest,
|
|
841
|
+
metadata?: grpcWeb.Metadata
|
|
842
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineConfigsResponse>;
|
|
843
|
+
|
|
844
|
+
llmEvaluationUpdateOnlineConfig(
|
|
845
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationOnlineConfigRequest,
|
|
846
|
+
metadata?: grpcWeb.Metadata
|
|
847
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineConfig>;
|
|
848
|
+
|
|
849
|
+
llmEvaluationDeleteOnlineConfig(
|
|
850
|
+
request: ondewo_nlu_llm_evaluation_pb.DeleteLlmEvaluationOnlineConfigRequest,
|
|
851
|
+
metadata?: grpcWeb.Metadata
|
|
852
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
853
|
+
|
|
854
|
+
llmEvaluationGetOnlineResult(
|
|
855
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationOnlineResultRequest,
|
|
856
|
+
metadata?: grpcWeb.Metadata
|
|
857
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationOnlineResult>;
|
|
858
|
+
|
|
859
|
+
llmEvaluationListOnlineResults(
|
|
860
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineResultsRequest,
|
|
861
|
+
metadata?: grpcWeb.Metadata
|
|
862
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationOnlineResultsResponse>;
|
|
863
|
+
|
|
864
|
+
llmEvaluationGetAnnotationQueueItem(
|
|
865
|
+
request: ondewo_nlu_llm_evaluation_pb.GetLlmEvaluationAnnotationQueueItemRequest,
|
|
866
|
+
metadata?: grpcWeb.Metadata
|
|
867
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAnnotationQueueItem>;
|
|
868
|
+
|
|
869
|
+
llmEvaluationListAnnotationQueueItems(
|
|
870
|
+
request: ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAnnotationQueueItemsRequest,
|
|
871
|
+
metadata?: grpcWeb.Metadata
|
|
872
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.ListLlmEvaluationAnnotationQueueItemsResponse>;
|
|
873
|
+
|
|
874
|
+
llmEvaluationUpdateAnnotationQueueItem(
|
|
875
|
+
request: ondewo_nlu_llm_evaluation_pb.UpdateLlmEvaluationAnnotationQueueItemRequest,
|
|
876
|
+
metadata?: grpcWeb.Metadata
|
|
877
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.LlmEvaluationAnnotationQueueItem>;
|
|
878
|
+
|
|
879
|
+
llmEvaluationPromoteAnnotationQueueItem(
|
|
880
|
+
request: ondewo_nlu_llm_evaluation_pb.PromoteLlmEvaluationAnnotationQueueItemRequest,
|
|
881
|
+
metadata?: grpcWeb.Metadata
|
|
882
|
+
): Promise<ondewo_nlu_llm_evaluation_pb.PromoteLlmEvaluationAnnotationQueueItemResponse>;
|
|
883
|
+
|
|
884
|
+
}
|
|
885
|
+
|