neuralseekui 1.0.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.
Files changed (103) hide show
  1. package/README.md +163 -0
  2. package/docs/AddIntentBody.md +10 -0
  3. package/docs/AnswersApi.md +160 -0
  4. package/docs/CategoriesApi.md +58 -0
  5. package/docs/CategoryBody.md +8 -0
  6. package/docs/CurateBody.md +9 -0
  7. package/docs/CuratedDataApi.md +59 -0
  8. package/docs/DelAnswerBody.md +6 -0
  9. package/docs/DelQuestionBody.md +7 -0
  10. package/docs/DelUserDataBody.md +7 -0
  11. package/docs/EditAnswerBody.md +7 -0
  12. package/docs/ExploreFilesBody.md +6 -0
  13. package/docs/ExploreUploadBody.md +6 -0
  14. package/docs/FdelBody.md +7 -0
  15. package/docs/FindAnswerIdBody.md +6 -0
  16. package/docs/FlagBody.md +7 -0
  17. package/docs/GodocumentBody.md +9 -0
  18. package/docs/GomaistroBody.md +7 -0
  19. package/docs/GomaistrotokensBody.md +7 -0
  20. package/docs/GooverBody.md +9 -0
  21. package/docs/GoperfBody.md +7 -0
  22. package/docs/GosemanticBody.md +9 -0
  23. package/docs/GotokensBody.md +7 -0
  24. package/docs/GovernanceApi.md +410 -0
  25. package/docs/IntentsApi.md +364 -0
  26. package/docs/LoadUserResponseBody.md +7 -0
  27. package/docs/MAIstroApi.md +265 -0
  28. package/docs/MaistroFilesBody.md +8 -0
  29. package/docs/MaistroOCRBody.md +6 -0
  30. package/docs/MergeBody.md +7 -0
  31. package/docs/QuestionsApi.md +58 -0
  32. package/docs/RenBody.md +7 -0
  33. package/docs/UnmergeBody.md +6 -0
  34. package/git_push.sh +52 -0
  35. package/mocha.opts +1 -0
  36. package/package.json +55 -0
  37. package/src/ApiClient.js +585 -0
  38. package/src/api/AnswersApi.js +179 -0
  39. package/src/api/CategoriesApi.js +85 -0
  40. package/src/api/CuratedDataApi.js +82 -0
  41. package/src/api/GovernanceApi.js +408 -0
  42. package/src/api/IntentsApi.js +367 -0
  43. package/src/api/MAIstroApi.js +262 -0
  44. package/src/api/QuestionsApi.js +85 -0
  45. package/src/index.js +279 -0
  46. package/src/model/AddIntentBody.js +91 -0
  47. package/src/model/CategoryBody.js +71 -0
  48. package/src/model/CurateBody.js +75 -0
  49. package/src/model/DelAnswerBody.js +55 -0
  50. package/src/model/DelQuestionBody.js +64 -0
  51. package/src/model/DelUserDataBody.js +62 -0
  52. package/src/model/EditAnswerBody.js +64 -0
  53. package/src/model/ExploreFilesBody.js +55 -0
  54. package/src/model/ExploreUploadBody.js +53 -0
  55. package/src/model/FdelBody.js +62 -0
  56. package/src/model/FindAnswerIdBody.js +55 -0
  57. package/src/model/FlagBody.js +61 -0
  58. package/src/model/GodocumentBody.js +76 -0
  59. package/src/model/GomaistroBody.js +62 -0
  60. package/src/model/GomaistrotokensBody.js +62 -0
  61. package/src/model/GooverBody.js +76 -0
  62. package/src/model/GoperfBody.js +62 -0
  63. package/src/model/GosemanticBody.js +76 -0
  64. package/src/model/GotokensBody.js +62 -0
  65. package/src/model/LoadUserResponseBody.js +64 -0
  66. package/src/model/MaistroFilesBody.js +69 -0
  67. package/src/model/MaistroOCRBody.js +53 -0
  68. package/src/model/MergeBody.js +64 -0
  69. package/src/model/RenBody.js +62 -0
  70. package/src/model/UnmergeBody.js +53 -0
  71. package/test/api/AnswersApi.spec.js +95 -0
  72. package/test/api/CategoriesApi.spec.js +59 -0
  73. package/test/api/CuratedDataApi.spec.js +60 -0
  74. package/test/api/GovernanceApi.spec.js +185 -0
  75. package/test/api/IntentsApi.spec.js +167 -0
  76. package/test/api/MAIstroApi.spec.js +134 -0
  77. package/test/api/QuestionsApi.spec.js +59 -0
  78. package/test/assert-equals.js +81 -0
  79. package/test/model/AddIntentBody.spec.js +76 -0
  80. package/test/model/CategoryBody.spec.js +64 -0
  81. package/test/model/CurateBody.spec.js +70 -0
  82. package/test/model/DelAnswerBody.spec.js +52 -0
  83. package/test/model/DelQuestionBody.spec.js +58 -0
  84. package/test/model/DelUserDataBody.spec.js +58 -0
  85. package/test/model/EditAnswerBody.spec.js +58 -0
  86. package/test/model/ExploreFilesBody.spec.js +52 -0
  87. package/test/model/ExploreUploadBody.spec.js +52 -0
  88. package/test/model/FdelBody.spec.js +58 -0
  89. package/test/model/FindAnswerIdBody.spec.js +52 -0
  90. package/test/model/FlagBody.spec.js +58 -0
  91. package/test/model/GodocumentBody.spec.js +70 -0
  92. package/test/model/GomaistroBody.spec.js +58 -0
  93. package/test/model/GomaistrotokensBody.spec.js +58 -0
  94. package/test/model/GooverBody.spec.js +70 -0
  95. package/test/model/GoperfBody.spec.js +58 -0
  96. package/test/model/GosemanticBody.spec.js +70 -0
  97. package/test/model/GotokensBody.spec.js +58 -0
  98. package/test/model/LoadUserResponseBody.spec.js +58 -0
  99. package/test/model/MaistroFilesBody.spec.js +64 -0
  100. package/test/model/MaistroOCRBody.spec.js +52 -0
  101. package/test/model/MergeBody.spec.js +58 -0
  102. package/test/model/RenBody.spec.js +58 -0
  103. package/test/model/UnmergeBody.spec.js +52 -0
@@ -0,0 +1,410 @@
1
+ # NeuralSeekUi.GovernanceApi
2
+
3
+ All URIs are relative to *https://console.neuralseek.com/{instance}*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**aiPricing**](GovernanceApi.md#aiPricing) | **POST** /aiPricing | AI Pricing
8
+ [**gomaistro**](GovernanceApi.md#gomaistro) | **POST** /gomaistro | Governance - mAIstro Usage
9
+ [**gomaistrotokens**](GovernanceApi.md#gomaistrotokens) | **POST** /gomaistrotokens | Governance - mAIstro Token Usage
10
+ [**gotokens**](GovernanceApi.md#gotokens) | **POST** /gotokens | Governance - Token Usage
11
+ [**governanceDocumentationDetails**](GovernanceApi.md#governanceDocumentationDetails) | **POST** /godocument | Governance - Documentation Details
12
+ [**governanceOverview**](GovernanceApi.md#governanceOverview) | **POST** /goover | Governance Overview
13
+ [**governancePerformanceDetails**](GovernanceApi.md#governancePerformanceDetails) | **POST** /goperf | Governance - Performance Details
14
+ [**governanceSemanticDetails**](GovernanceApi.md#governanceSemanticDetails) | **POST** /gosemantic | Governance - Semantic Details
15
+
16
+ <a name="aiPricing"></a>
17
+ # **aiPricing**
18
+ > aiPricing()
19
+
20
+ AI Pricing
21
+
22
+ Retrieve AI pricing metadata
23
+
24
+ ### Example
25
+ ```javascript
26
+ import {NeuralSeekUi} from 'neuralSeekUI';
27
+ let defaultClient = NeuralSeekUi.ApiClient.instance;
28
+
29
+ // Configure API key authorization: apiKey
30
+ let apiKey = defaultClient.authentications['apiKey'];
31
+ apiKey.apiKey = 'YOUR API KEY';
32
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
33
+ //apiKey.apiKeyPrefix = 'Token';
34
+
35
+ let apiInstance = new NeuralSeekUi.GovernanceApi();
36
+ apiInstance.aiPricing((error, data, response) => {
37
+ if (error) {
38
+ console.error(error);
39
+ } else {
40
+ console.log('API called successfully.');
41
+ }
42
+ });
43
+ ```
44
+
45
+ ### Parameters
46
+ This endpoint does not need any parameter.
47
+
48
+ ### Return type
49
+
50
+ null (empty response body)
51
+
52
+ ### Authorization
53
+
54
+ [apiKey](../README.md#apiKey)
55
+
56
+ ### HTTP request headers
57
+
58
+ - **Content-Type**: Not defined
59
+ - **Accept**: Not defined
60
+
61
+ <a name="gomaistro"></a>
62
+ # **gomaistro**
63
+ > gomaistro(body)
64
+
65
+ Governance - mAIstro Usage
66
+
67
+ mAIstro usage details
68
+
69
+ ### Example
70
+ ```javascript
71
+ import {NeuralSeekUi} from 'neuralSeekUI';
72
+ let defaultClient = NeuralSeekUi.ApiClient.instance;
73
+
74
+ // Configure API key authorization: apiKey
75
+ let apiKey = defaultClient.authentications['apiKey'];
76
+ apiKey.apiKey = 'YOUR API KEY';
77
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
78
+ //apiKey.apiKeyPrefix = 'Token';
79
+
80
+ let apiInstance = new NeuralSeekUi.GovernanceApi();
81
+ let body = new NeuralSeekUi.GomaistroBody(); // GomaistroBody |
82
+
83
+ apiInstance.gomaistro(body, (error, data, response) => {
84
+ if (error) {
85
+ console.error(error);
86
+ } else {
87
+ console.log('API called successfully.');
88
+ }
89
+ });
90
+ ```
91
+
92
+ ### Parameters
93
+
94
+ Name | Type | Description | Notes
95
+ ------------- | ------------- | ------------- | -------------
96
+ **body** | [**GomaistroBody**](GomaistroBody.md)| |
97
+
98
+ ### Return type
99
+
100
+ null (empty response body)
101
+
102
+ ### Authorization
103
+
104
+ [apiKey](../README.md#apiKey)
105
+
106
+ ### HTTP request headers
107
+
108
+ - **Content-Type**: application/json
109
+ - **Accept**: Not defined
110
+
111
+ <a name="gomaistrotokens"></a>
112
+ # **gomaistrotokens**
113
+ > gomaistrotokens(body)
114
+
115
+ Governance - mAIstro Token Usage
116
+
117
+ mAIstro token usage details
118
+
119
+ ### Example
120
+ ```javascript
121
+ import {NeuralSeekUi} from 'neuralSeekUI';
122
+ let defaultClient = NeuralSeekUi.ApiClient.instance;
123
+
124
+ // Configure API key authorization: apiKey
125
+ let apiKey = defaultClient.authentications['apiKey'];
126
+ apiKey.apiKey = 'YOUR API KEY';
127
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
128
+ //apiKey.apiKeyPrefix = 'Token';
129
+
130
+ let apiInstance = new NeuralSeekUi.GovernanceApi();
131
+ let body = new NeuralSeekUi.GomaistrotokensBody(); // GomaistrotokensBody |
132
+
133
+ apiInstance.gomaistrotokens(body, (error, data, response) => {
134
+ if (error) {
135
+ console.error(error);
136
+ } else {
137
+ console.log('API called successfully.');
138
+ }
139
+ });
140
+ ```
141
+
142
+ ### Parameters
143
+
144
+ Name | Type | Description | Notes
145
+ ------------- | ------------- | ------------- | -------------
146
+ **body** | [**GomaistrotokensBody**](GomaistrotokensBody.md)| |
147
+
148
+ ### Return type
149
+
150
+ null (empty response body)
151
+
152
+ ### Authorization
153
+
154
+ [apiKey](../README.md#apiKey)
155
+
156
+ ### HTTP request headers
157
+
158
+ - **Content-Type**: application/json
159
+ - **Accept**: Not defined
160
+
161
+ <a name="gotokens"></a>
162
+ # **gotokens**
163
+ > gotokens(body)
164
+
165
+ Governance - Token Usage
166
+
167
+ Token usage details (BYOLLM plans)
168
+
169
+ ### Example
170
+ ```javascript
171
+ import {NeuralSeekUi} from 'neuralSeekUI';
172
+ let defaultClient = NeuralSeekUi.ApiClient.instance;
173
+
174
+ // Configure API key authorization: apiKey
175
+ let apiKey = defaultClient.authentications['apiKey'];
176
+ apiKey.apiKey = 'YOUR API KEY';
177
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
178
+ //apiKey.apiKeyPrefix = 'Token';
179
+
180
+ let apiInstance = new NeuralSeekUi.GovernanceApi();
181
+ let body = new NeuralSeekUi.GotokensBody(); // GotokensBody |
182
+
183
+ apiInstance.gotokens(body, (error, data, response) => {
184
+ if (error) {
185
+ console.error(error);
186
+ } else {
187
+ console.log('API called successfully.');
188
+ }
189
+ });
190
+ ```
191
+
192
+ ### Parameters
193
+
194
+ Name | Type | Description | Notes
195
+ ------------- | ------------- | ------------- | -------------
196
+ **body** | [**GotokensBody**](GotokensBody.md)| |
197
+
198
+ ### Return type
199
+
200
+ null (empty response body)
201
+
202
+ ### Authorization
203
+
204
+ [apiKey](../README.md#apiKey)
205
+
206
+ ### HTTP request headers
207
+
208
+ - **Content-Type**: application/json
209
+ - **Accept**: Not defined
210
+
211
+ <a name="governanceDocumentationDetails"></a>
212
+ # **governanceDocumentationDetails**
213
+ > governanceDocumentationDetails(body)
214
+
215
+ Governance - Documentation Details
216
+
217
+ Governance - Documentation Details
218
+
219
+ ### Example
220
+ ```javascript
221
+ import {NeuralSeekUi} from 'neuralSeekUI';
222
+ let defaultClient = NeuralSeekUi.ApiClient.instance;
223
+
224
+ // Configure API key authorization: apiKey
225
+ let apiKey = defaultClient.authentications['apiKey'];
226
+ apiKey.apiKey = 'YOUR API KEY';
227
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
228
+ //apiKey.apiKeyPrefix = 'Token';
229
+
230
+ let apiInstance = new NeuralSeekUi.GovernanceApi();
231
+ let body = new NeuralSeekUi.GodocumentBody(); // GodocumentBody |
232
+
233
+ apiInstance.governanceDocumentationDetails(body, (error, data, response) => {
234
+ if (error) {
235
+ console.error(error);
236
+ } else {
237
+ console.log('API called successfully.');
238
+ }
239
+ });
240
+ ```
241
+
242
+ ### Parameters
243
+
244
+ Name | Type | Description | Notes
245
+ ------------- | ------------- | ------------- | -------------
246
+ **body** | [**GodocumentBody**](GodocumentBody.md)| |
247
+
248
+ ### Return type
249
+
250
+ null (empty response body)
251
+
252
+ ### Authorization
253
+
254
+ [apiKey](../README.md#apiKey)
255
+
256
+ ### HTTP request headers
257
+
258
+ - **Content-Type**: application/json
259
+ - **Accept**: Not defined
260
+
261
+ <a name="governanceOverview"></a>
262
+ # **governanceOverview**
263
+ > governanceOverview(body)
264
+
265
+ Governance Overview
266
+
267
+ Governance Overview
268
+
269
+ ### Example
270
+ ```javascript
271
+ import {NeuralSeekUi} from 'neuralSeekUI';
272
+ let defaultClient = NeuralSeekUi.ApiClient.instance;
273
+
274
+ // Configure API key authorization: apiKey
275
+ let apiKey = defaultClient.authentications['apiKey'];
276
+ apiKey.apiKey = 'YOUR API KEY';
277
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
278
+ //apiKey.apiKeyPrefix = 'Token';
279
+
280
+ let apiInstance = new NeuralSeekUi.GovernanceApi();
281
+ let body = new NeuralSeekUi.GooverBody(); // GooverBody |
282
+
283
+ apiInstance.governanceOverview(body, (error, data, response) => {
284
+ if (error) {
285
+ console.error(error);
286
+ } else {
287
+ console.log('API called successfully.');
288
+ }
289
+ });
290
+ ```
291
+
292
+ ### Parameters
293
+
294
+ Name | Type | Description | Notes
295
+ ------------- | ------------- | ------------- | -------------
296
+ **body** | [**GooverBody**](GooverBody.md)| |
297
+
298
+ ### Return type
299
+
300
+ null (empty response body)
301
+
302
+ ### Authorization
303
+
304
+ [apiKey](../README.md#apiKey)
305
+
306
+ ### HTTP request headers
307
+
308
+ - **Content-Type**: application/json
309
+ - **Accept**: Not defined
310
+
311
+ <a name="governancePerformanceDetails"></a>
312
+ # **governancePerformanceDetails**
313
+ > governancePerformanceDetails(body)
314
+
315
+ Governance - Performance Details
316
+
317
+ Governance - Performance Details
318
+
319
+ ### Example
320
+ ```javascript
321
+ import {NeuralSeekUi} from 'neuralSeekUI';
322
+ let defaultClient = NeuralSeekUi.ApiClient.instance;
323
+
324
+ // Configure API key authorization: apiKey
325
+ let apiKey = defaultClient.authentications['apiKey'];
326
+ apiKey.apiKey = 'YOUR API KEY';
327
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
328
+ //apiKey.apiKeyPrefix = 'Token';
329
+
330
+ let apiInstance = new NeuralSeekUi.GovernanceApi();
331
+ let body = new NeuralSeekUi.GoperfBody(); // GoperfBody |
332
+
333
+ apiInstance.governancePerformanceDetails(body, (error, data, response) => {
334
+ if (error) {
335
+ console.error(error);
336
+ } else {
337
+ console.log('API called successfully.');
338
+ }
339
+ });
340
+ ```
341
+
342
+ ### Parameters
343
+
344
+ Name | Type | Description | Notes
345
+ ------------- | ------------- | ------------- | -------------
346
+ **body** | [**GoperfBody**](GoperfBody.md)| |
347
+
348
+ ### Return type
349
+
350
+ null (empty response body)
351
+
352
+ ### Authorization
353
+
354
+ [apiKey](../README.md#apiKey)
355
+
356
+ ### HTTP request headers
357
+
358
+ - **Content-Type**: application/json
359
+ - **Accept**: Not defined
360
+
361
+ <a name="governanceSemanticDetails"></a>
362
+ # **governanceSemanticDetails**
363
+ > governanceSemanticDetails(body)
364
+
365
+ Governance - Semantic Details
366
+
367
+ Governance - Semantic Details
368
+
369
+ ### Example
370
+ ```javascript
371
+ import {NeuralSeekUi} from 'neuralSeekUI';
372
+ let defaultClient = NeuralSeekUi.ApiClient.instance;
373
+
374
+ // Configure API key authorization: apiKey
375
+ let apiKey = defaultClient.authentications['apiKey'];
376
+ apiKey.apiKey = 'YOUR API KEY';
377
+ // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
378
+ //apiKey.apiKeyPrefix = 'Token';
379
+
380
+ let apiInstance = new NeuralSeekUi.GovernanceApi();
381
+ let body = new NeuralSeekUi.GosemanticBody(); // GosemanticBody |
382
+
383
+ apiInstance.governanceSemanticDetails(body, (error, data, response) => {
384
+ if (error) {
385
+ console.error(error);
386
+ } else {
387
+ console.log('API called successfully.');
388
+ }
389
+ });
390
+ ```
391
+
392
+ ### Parameters
393
+
394
+ Name | Type | Description | Notes
395
+ ------------- | ------------- | ------------- | -------------
396
+ **body** | [**GosemanticBody**](GosemanticBody.md)| |
397
+
398
+ ### Return type
399
+
400
+ null (empty response body)
401
+
402
+ ### Authorization
403
+
404
+ [apiKey](../README.md#apiKey)
405
+
406
+ ### HTTP request headers
407
+
408
+ - **Content-Type**: application/json
409
+ - **Accept**: Not defined
410
+