neuralseek 1.0.1
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/LICENSE +201 -0
- package/README.md +206 -0
- package/docs/AnalyticsApi.md +59 -0
- package/docs/AnalyticsBody.md +6 -0
- package/docs/AnswerRatingsBody.md +7 -0
- package/docs/CategorizeApi.md +58 -0
- package/docs/CategorizeBody.md +6 -0
- package/docs/ChatCompletionsBody.md +9 -0
- package/docs/ChatcompletionsMessages.md +16 -0
- package/docs/ChatcompletionsTools.md +13 -0
- package/docs/ExtractBody.md +11 -0
- package/docs/ExtractEntitiesApi.md +58 -0
- package/docs/GuardrailsApi.md +109 -0
- package/docs/IdentifysingleBody.md +6 -0
- package/docs/InlineResponse200.md +6 -0
- package/docs/InlineResponse2001.md +8 -0
- package/docs/InlineResponse20010.md +6 -0
- package/docs/InlineResponse20011.md +9 -0
- package/docs/InlineResponse20012.md +7 -0
- package/docs/InlineResponse20013.md +6 -0
- package/docs/InlineResponse2002.md +10 -0
- package/docs/InlineResponse2002Render.md +9 -0
- package/docs/InlineResponse2003.md +6 -0
- package/docs/InlineResponse2003Data.md +10 -0
- package/docs/InlineResponse2004.md +10 -0
- package/docs/InlineResponse2004Choices.md +8 -0
- package/docs/InlineResponse2004Message.md +14 -0
- package/docs/InlineResponse2005.md +9 -0
- package/docs/InlineResponse2005TopIntents.md +7 -0
- package/docs/InlineResponse2006.md +9 -0
- package/docs/InlineResponse2006ExtractedEntities.md +6 -0
- package/docs/InlineResponse2007.md +12 -0
- package/docs/InlineResponse2007Translations.md +6 -0
- package/docs/InlineResponse2008.md +7 -0
- package/docs/InlineResponse2009.md +7 -0
- package/docs/KeysApi.md +99 -0
- package/docs/LogExternalAgentBody.md +11 -0
- package/docs/LogExternalAgentEntries.md +34 -0
- package/docs/LogsApi.md +110 -0
- package/docs/LogsBody.md +8 -0
- package/docs/MAIstroAgentRatingsApi.md +109 -0
- package/docs/MAIstroApi.md +367 -0
- package/docs/MaistroBatchBody.md +9 -0
- package/docs/MaistroBody.md +9 -0
- package/docs/MaistroOptions.md +20 -0
- package/docs/MaistroRateBody.md +9 -0
- package/docs/MaistroRatingsBody.md +7 -0
- package/docs/MaistroStreamBody.md +9 -0
- package/docs/MaistroStreamOptions.md +19 -0
- package/docs/PiiBody.md +6 -0
- package/docs/RateBody.md +8 -0
- package/docs/ScoreBody.md +7 -0
- package/docs/Seek.md +9 -0
- package/docs/SeekAnswerRatingsApi.md +109 -0
- package/docs/SeekApi.md +109 -0
- package/docs/SeekOptions.md +24 -0
- package/docs/SeekResponse.md +32 -0
- package/docs/SeekResponsePassages.md +11 -0
- package/docs/SeekResponseVariablesExpanded.md +7 -0
- package/docs/SeekStreamBody.md +9 -0
- package/docs/SeekStreamOptions.md +23 -0
- package/docs/SeekStreamOptionsLastTurn.md +7 -0
- package/docs/SeekStreamOptionsPersonalize.md +10 -0
- package/docs/SeekStreamParams.md +7 -0
- package/docs/SeekStreamUserSession.md +7 -0
- package/docs/SeekStreamUserSessionMetadata.md +6 -0
- package/docs/SeekStreamUserSessionSystem.md +6 -0
- package/docs/ServiceTestApi.md +46 -0
- package/docs/TestBody.md +6 -0
- package/docs/TestBody1.md +6 -0
- package/docs/TestQuestionsApi.md +107 -0
- package/docs/TrainBody.md +7 -0
- package/docs/TrainKBApi.md +58 -0
- package/docs/TranslateApi.md +259 -0
- package/docs/TranslateBody.md +11 -0
- package/docs/TranslateGlossaryBody.md +6 -0
- package/docs/TranslateGlossaryBody1.md +6 -0
- package/docs/UserDataApi.md +59 -0
- package/git_push.sh +52 -0
- package/mocha.opts +1 -0
- package/package.json +55 -0
- package/src/AnalyticsApi.js +82 -0
- package/src/ApiClient.js +585 -0
- package/src/CategorizeApi.js +87 -0
- package/src/ExtractEntitiesApi.js +87 -0
- package/src/GuardrailsApi.js +134 -0
- package/src/KeysApi.js +122 -0
- package/src/LogsApi.js +133 -0
- package/src/MAIstroAgentRatingsApi.js +134 -0
- package/src/MAIstroApi.js +366 -0
- package/src/SeekAnswerRatingsApi.js +134 -0
- package/src/SeekApi.js +136 -0
- package/src/ServiceTestApi.js +79 -0
- package/src/TestQuestionsApi.js +124 -0
- package/src/TrainKBApi.js +85 -0
- package/src/TranslateApi.js +277 -0
- package/src/UserDataApi.js +81 -0
- package/src/index.js +587 -0
- package/src/model/AnalyticsBody.js +54 -0
- package/src/model/AnswerRatingsBody.js +62 -0
- package/src/model/CategorizeBody.js +55 -0
- package/src/model/ChatCompletionsBody.js +80 -0
- package/src/model/ChatcompletionsMessages.js +92 -0
- package/src/model/ChatcompletionsTools.js +75 -0
- package/src/model/ExtractBody.js +94 -0
- package/src/model/IdentifysingleBody.js +55 -0
- package/src/model/InlineResponse200.js +56 -0
- package/src/model/InlineResponse2001.js +70 -0
- package/src/model/InlineResponse20010.js +54 -0
- package/src/model/InlineResponse20011.js +81 -0
- package/src/model/InlineResponse20012.js +60 -0
- package/src/model/InlineResponse20013.js +55 -0
- package/src/model/InlineResponse2002.js +88 -0
- package/src/model/InlineResponse2002Render.js +80 -0
- package/src/model/InlineResponse2003.js +56 -0
- package/src/model/InlineResponse2003Data.js +88 -0
- package/src/model/InlineResponse2004.js +86 -0
- package/src/model/InlineResponse2004Choices.js +70 -0
- package/src/model/InlineResponse2004Message.js +80 -0
- package/src/model/InlineResponse2005.js +80 -0
- package/src/model/InlineResponse2005TopIntents.js +64 -0
- package/src/model/InlineResponse2006.js +79 -0
- package/src/model/InlineResponse2006ExtractedEntities.js +55 -0
- package/src/model/InlineResponse2007.js +103 -0
- package/src/model/InlineResponse2007Translations.js +55 -0
- package/src/model/InlineResponse2008.js +63 -0
- package/src/model/InlineResponse2009.js +63 -0
- package/src/model/LogExternalAgentBody.js +104 -0
- package/src/model/LogExternalAgentEntries.js +195 -0
- package/src/model/LogsBody.js +73 -0
- package/src/model/MaistroBatchBody.js +81 -0
- package/src/model/MaistroBody.js +81 -0
- package/src/model/MaistroOptions.js +176 -0
- package/src/model/MaistroRateBody.js +78 -0
- package/src/model/MaistroRatingsBody.js +62 -0
- package/src/model/MaistroStreamBody.js +81 -0
- package/src/model/MaistroStreamOptions.js +167 -0
- package/src/model/PiiBody.js +55 -0
- package/src/model/RateBody.js +70 -0
- package/src/model/ScoreBody.js +63 -0
- package/src/model/Seek.js +82 -0
- package/src/model/SeekOptions.js +216 -0
- package/src/model/SeekResponse.js +281 -0
- package/src/model/SeekResponsePassages.js +99 -0
- package/src/model/SeekResponseVariablesExpanded.js +64 -0
- package/src/model/SeekStreamBody.js +82 -0
- package/src/model/SeekStreamOptions.js +207 -0
- package/src/model/SeekStreamOptionsLastTurn.js +64 -0
- package/src/model/SeekStreamOptionsPersonalize.js +91 -0
- package/src/model/SeekStreamParams.js +64 -0
- package/src/model/SeekStreamUserSession.js +63 -0
- package/src/model/SeekStreamUserSessionMetadata.js +55 -0
- package/src/model/SeekStreamUserSessionSystem.js +55 -0
- package/src/model/TestBody.js +53 -0
- package/src/model/TestBody1.js +55 -0
- package/src/model/TrainBody.js +63 -0
- package/src/model/TranslateBody.js +99 -0
- package/src/model/TranslateGlossaryBody.js +53 -0
- package/src/model/TranslateGlossaryBody1.js +54 -0
- package/test/api/AnalyticsApi.spec.js +60 -0
- package/test/api/CategorizeApi.spec.js +61 -0
- package/test/api/ExtractEntitiesApi.spec.js +61 -0
- package/test/api/GuardrailsApi.spec.js +85 -0
- package/test/api/KeysApi.spec.js +79 -0
- package/test/api/LogsApi.spec.js +88 -0
- package/test/api/MAIstroAgentRatingsApi.spec.js +79 -0
- package/test/api/MAIstroApi.spec.js +180 -0
- package/test/api/SeekAnswerRatingsApi.spec.js +79 -0
- package/test/api/SeekApi.spec.js +81 -0
- package/test/api/ServiceTestApi.spec.js +59 -0
- package/test/api/TestQuestionsApi.spec.js +78 -0
- package/test/api/TrainKBApi.spec.js +59 -0
- package/test/api/TranslateApi.spec.js +143 -0
- package/test/api/UserDataApi.spec.js +60 -0
- package/test/assert-equals.js +81 -0
- package/test/model/AnalyticsBody.spec.js +52 -0
- package/test/model/AnswerRatingsBody.spec.js +58 -0
- package/test/model/CategorizeBody.spec.js +52 -0
- package/test/model/ChatCompletionsBody.spec.js +70 -0
- package/test/model/ChatcompletionsMessages.spec.js +58 -0
- package/test/model/ChatcompletionsTools.spec.js +58 -0
- package/test/model/ExtractBody.spec.js +82 -0
- package/test/model/IdentifysingleBody.spec.js +52 -0
- package/test/model/InlineResponse200.spec.js +52 -0
- package/test/model/InlineResponse2001.spec.js +64 -0
- package/test/model/InlineResponse20010.spec.js +52 -0
- package/test/model/InlineResponse20011.spec.js +70 -0
- package/test/model/InlineResponse20012.spec.js +58 -0
- package/test/model/InlineResponse20013.spec.js +52 -0
- package/test/model/InlineResponse2002.spec.js +76 -0
- package/test/model/InlineResponse2002Render.spec.js +70 -0
- package/test/model/InlineResponse2003.spec.js +52 -0
- package/test/model/InlineResponse2003Data.spec.js +76 -0
- package/test/model/InlineResponse2004.spec.js +76 -0
- package/test/model/InlineResponse2004Choices.spec.js +64 -0
- package/test/model/InlineResponse2004Message.spec.js +58 -0
- package/test/model/InlineResponse2005.spec.js +70 -0
- package/test/model/InlineResponse2005TopIntents.spec.js +58 -0
- package/test/model/InlineResponse2006.spec.js +70 -0
- package/test/model/InlineResponse2006ExtractedEntities.spec.js +52 -0
- package/test/model/InlineResponse2007.spec.js +88 -0
- package/test/model/InlineResponse2007Translations.spec.js +52 -0
- package/test/model/InlineResponse2008.spec.js +58 -0
- package/test/model/InlineResponse2009.spec.js +58 -0
- package/test/model/LogExternalAgentBody.spec.js +82 -0
- package/test/model/LogExternalAgentEntries.spec.js +118 -0
- package/test/model/LogsBody.spec.js +64 -0
- package/test/model/MaistroBatchBody.spec.js +70 -0
- package/test/model/MaistroBody.spec.js +70 -0
- package/test/model/MaistroOptions.spec.js +136 -0
- package/test/model/MaistroRateBody.spec.js +70 -0
- package/test/model/MaistroRatingsBody.spec.js +58 -0
- package/test/model/MaistroStreamBody.spec.js +70 -0
- package/test/model/MaistroStreamOptions.spec.js +130 -0
- package/test/model/PiiBody.spec.js +52 -0
- package/test/model/RateBody.spec.js +64 -0
- package/test/model/ScoreBody.spec.js +58 -0
- package/test/model/Seek.spec.js +70 -0
- package/test/model/SeekOptions.spec.js +160 -0
- package/test/model/SeekResponse.spec.js +208 -0
- package/test/model/SeekResponsePassages.spec.js +82 -0
- package/test/model/SeekResponseVariablesExpanded.spec.js +58 -0
- package/test/model/SeekStreamBody.spec.js +70 -0
- package/test/model/SeekStreamOptions.spec.js +154 -0
- package/test/model/SeekStreamOptionsLastTurn.spec.js +58 -0
- package/test/model/SeekStreamOptionsPersonalize.spec.js +76 -0
- package/test/model/SeekStreamParams.spec.js +58 -0
- package/test/model/SeekStreamUserSession.spec.js +58 -0
- package/test/model/SeekStreamUserSessionMetadata.spec.js +52 -0
- package/test/model/SeekStreamUserSessionSystem.spec.js +52 -0
- package/test/model/TestBody.spec.js +52 -0
- package/test/model/TestBody1.spec.js +52 -0
- package/test/model/TrainBody.spec.js +58 -0
- package/test/model/TranslateBody.spec.js +82 -0
- package/test/model/TranslateGlossaryBody.spec.js +52 -0
- package/test/model/TranslateGlossaryBody1.spec.js +52 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
import ApiClient from '../ApiClient';
|
|
17
|
+
import SeekStreamUserSessionMetadata from './SeekStreamUserSessionMetadata';
|
|
18
|
+
import SeekStreamUserSessionSystem from './SeekStreamUserSessionSystem';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The SeekStreamUserSession model module.
|
|
22
|
+
* @module model/SeekStreamUserSession
|
|
23
|
+
* @version 1.0.1
|
|
24
|
+
*/
|
|
25
|
+
export default class SeekStreamUserSession {
|
|
26
|
+
/**
|
|
27
|
+
* Constructs a new <code>SeekStreamUserSession</code>.
|
|
28
|
+
* Context tracking object. You must set at least one of user_id or session_id to enable context keeping.
|
|
29
|
+
* @alias module:model/SeekStreamUserSession
|
|
30
|
+
* @class
|
|
31
|
+
*/
|
|
32
|
+
constructor() {
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Constructs a <code>SeekStreamUserSession</code> from a plain JavaScript object, optionally creating a new instance.
|
|
37
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
38
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
39
|
+
* @param {module:model/SeekStreamUserSession} obj Optional instance to populate.
|
|
40
|
+
* @return {module:model/SeekStreamUserSession} The populated <code>SeekStreamUserSession</code> instance.
|
|
41
|
+
*/
|
|
42
|
+
static constructFromObject(data, obj) {
|
|
43
|
+
if (data) {
|
|
44
|
+
obj = obj || new SeekStreamUserSession();
|
|
45
|
+
if (data.hasOwnProperty('metadata'))
|
|
46
|
+
obj.metadata = SeekStreamUserSessionMetadata.constructFromObject(data['metadata']);
|
|
47
|
+
if (data.hasOwnProperty('system'))
|
|
48
|
+
obj.system = SeekStreamUserSessionSystem.constructFromObject(data['system']);
|
|
49
|
+
}
|
|
50
|
+
return obj;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @member {module:model/SeekStreamUserSessionMetadata} metadata
|
|
56
|
+
*/
|
|
57
|
+
SeekStreamUserSession.prototype.metadata = undefined;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @member {module:model/SeekStreamUserSessionSystem} system
|
|
61
|
+
*/
|
|
62
|
+
SeekStreamUserSession.prototype.system = undefined;
|
|
63
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
import ApiClient from '../ApiClient';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The SeekStreamUserSessionMetadata model module.
|
|
20
|
+
* @module model/SeekStreamUserSessionMetadata
|
|
21
|
+
* @version 1.0.1
|
|
22
|
+
*/
|
|
23
|
+
export default class SeekStreamUserSessionMetadata {
|
|
24
|
+
/**
|
|
25
|
+
* Constructs a new <code>SeekStreamUserSessionMetadata</code>.
|
|
26
|
+
* @alias module:model/SeekStreamUserSessionMetadata
|
|
27
|
+
* @class
|
|
28
|
+
*/
|
|
29
|
+
constructor() {
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a <code>SeekStreamUserSessionMetadata</code> from a plain JavaScript object, optionally creating a new instance.
|
|
34
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
35
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
36
|
+
* @param {module:model/SeekStreamUserSessionMetadata} obj Optional instance to populate.
|
|
37
|
+
* @return {module:model/SeekStreamUserSessionMetadata} The populated <code>SeekStreamUserSessionMetadata</code> instance.
|
|
38
|
+
*/
|
|
39
|
+
static constructFromObject(data, obj) {
|
|
40
|
+
if (data) {
|
|
41
|
+
obj = obj || new SeekStreamUserSessionMetadata();
|
|
42
|
+
if (data.hasOwnProperty('user_id'))
|
|
43
|
+
obj.userId = ApiClient.convertToType(data['user_id'], 'String');
|
|
44
|
+
}
|
|
45
|
+
return obj;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* A unique user identifier.
|
|
51
|
+
* @member {String} userId
|
|
52
|
+
* @default ''
|
|
53
|
+
*/
|
|
54
|
+
SeekStreamUserSessionMetadata.prototype.userId = '';
|
|
55
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
import ApiClient from '../ApiClient';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The SeekStreamUserSessionSystem model module.
|
|
20
|
+
* @module model/SeekStreamUserSessionSystem
|
|
21
|
+
* @version 1.0.1
|
|
22
|
+
*/
|
|
23
|
+
export default class SeekStreamUserSessionSystem {
|
|
24
|
+
/**
|
|
25
|
+
* Constructs a new <code>SeekStreamUserSessionSystem</code>.
|
|
26
|
+
* @alias module:model/SeekStreamUserSessionSystem
|
|
27
|
+
* @class
|
|
28
|
+
*/
|
|
29
|
+
constructor() {
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a <code>SeekStreamUserSessionSystem</code> from a plain JavaScript object, optionally creating a new instance.
|
|
34
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
35
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
36
|
+
* @param {module:model/SeekStreamUserSessionSystem} obj Optional instance to populate.
|
|
37
|
+
* @return {module:model/SeekStreamUserSessionSystem} The populated <code>SeekStreamUserSessionSystem</code> instance.
|
|
38
|
+
*/
|
|
39
|
+
static constructFromObject(data, obj) {
|
|
40
|
+
if (data) {
|
|
41
|
+
obj = obj || new SeekStreamUserSessionSystem();
|
|
42
|
+
if (data.hasOwnProperty('session_id'))
|
|
43
|
+
obj.sessionId = ApiClient.convertToType(data['session_id'], 'String');
|
|
44
|
+
}
|
|
45
|
+
return obj;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* A session identifier for the defined user.
|
|
51
|
+
* @member {String} sessionId
|
|
52
|
+
* @default ''
|
|
53
|
+
*/
|
|
54
|
+
SeekStreamUserSessionSystem.prototype.sessionId = '';
|
|
55
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
import ApiClient from '../ApiClient';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The TestBody model module.
|
|
20
|
+
* @module model/TestBody
|
|
21
|
+
* @version 1.0.1
|
|
22
|
+
*/
|
|
23
|
+
export default class TestBody {
|
|
24
|
+
/**
|
|
25
|
+
* Constructs a new <code>TestBody</code>.
|
|
26
|
+
* @alias module:model/TestBody
|
|
27
|
+
* @class
|
|
28
|
+
*/
|
|
29
|
+
constructor() {
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a <code>TestBody</code> from a plain JavaScript object, optionally creating a new instance.
|
|
34
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
35
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
36
|
+
* @param {module:model/TestBody} obj Optional instance to populate.
|
|
37
|
+
* @return {module:model/TestBody} The populated <code>TestBody</code> instance.
|
|
38
|
+
*/
|
|
39
|
+
static constructFromObject(data, obj) {
|
|
40
|
+
if (data) {
|
|
41
|
+
obj = obj || new TestBody();
|
|
42
|
+
if (data.hasOwnProperty('file'))
|
|
43
|
+
obj.file = ApiClient.convertToType(data['file'], 'Blob');
|
|
44
|
+
}
|
|
45
|
+
return obj;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @member {Blob} file
|
|
51
|
+
*/
|
|
52
|
+
TestBody.prototype.file = undefined;
|
|
53
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
import ApiClient from '../ApiClient';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The TestBody1 model module.
|
|
20
|
+
* @module model/TestBody1
|
|
21
|
+
* @version 1.0.1
|
|
22
|
+
*/
|
|
23
|
+
export default class TestBody1 {
|
|
24
|
+
/**
|
|
25
|
+
* Constructs a new <code>TestBody1</code>.
|
|
26
|
+
* @alias module:model/TestBody1
|
|
27
|
+
* @class
|
|
28
|
+
*/
|
|
29
|
+
constructor() {
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a <code>TestBody1</code> from a plain JavaScript object, optionally creating a new instance.
|
|
34
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
35
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
36
|
+
* @param {module:model/TestBody1} obj Optional instance to populate.
|
|
37
|
+
* @return {module:model/TestBody1} The populated <code>TestBody1</code> instance.
|
|
38
|
+
*/
|
|
39
|
+
static constructFromObject(data, obj) {
|
|
40
|
+
if (data) {
|
|
41
|
+
obj = obj || new TestBody1();
|
|
42
|
+
if (data.hasOwnProperty('proposalID'))
|
|
43
|
+
obj.proposalID = ApiClient.convertToType(data['proposalID'], 'String');
|
|
44
|
+
}
|
|
45
|
+
return obj;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* An optional Proposal ID to use for the test
|
|
51
|
+
* @member {String} proposalID
|
|
52
|
+
* @default ''
|
|
53
|
+
*/
|
|
54
|
+
TestBody1.prototype.proposalID = '';
|
|
55
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
import ApiClient from '../ApiClient';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The TrainBody model module.
|
|
20
|
+
* @module model/TrainBody
|
|
21
|
+
* @version 1.0.1
|
|
22
|
+
*/
|
|
23
|
+
export default class TrainBody {
|
|
24
|
+
/**
|
|
25
|
+
* Constructs a new <code>TrainBody</code>.
|
|
26
|
+
* @alias module:model/TrainBody
|
|
27
|
+
* @class
|
|
28
|
+
*/
|
|
29
|
+
constructor() {
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a <code>TrainBody</code> from a plain JavaScript object, optionally creating a new instance.
|
|
34
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
35
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
36
|
+
* @param {module:model/TrainBody} obj Optional instance to populate.
|
|
37
|
+
* @return {module:model/TrainBody} The populated <code>TrainBody</code> instance.
|
|
38
|
+
*/
|
|
39
|
+
static constructFromObject(data, obj) {
|
|
40
|
+
if (data) {
|
|
41
|
+
obj = obj || new TrainBody();
|
|
42
|
+
if (data.hasOwnProperty('train'))
|
|
43
|
+
obj.train = ApiClient.convertToType(data['train'], 'String');
|
|
44
|
+
if (data.hasOwnProperty('score'))
|
|
45
|
+
obj.score = ApiClient.convertToType(data['score'], 'Number');
|
|
46
|
+
}
|
|
47
|
+
return obj;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* The training token. Get this from passages/train
|
|
53
|
+
* @member {String} train
|
|
54
|
+
* @default ''
|
|
55
|
+
*/
|
|
56
|
+
TrainBody.prototype.train = '';
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* The relevancy score. An integer, 0-100
|
|
60
|
+
* @member {Number} score
|
|
61
|
+
*/
|
|
62
|
+
TrainBody.prototype.score = undefined;
|
|
63
|
+
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
import ApiClient from '../ApiClient';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The TranslateBody model module.
|
|
20
|
+
* @module model/TranslateBody
|
|
21
|
+
* @version 1.0.1
|
|
22
|
+
*/
|
|
23
|
+
export default class TranslateBody {
|
|
24
|
+
/**
|
|
25
|
+
* Constructs a new <code>TranslateBody</code>.
|
|
26
|
+
* @alias module:model/TranslateBody
|
|
27
|
+
* @class
|
|
28
|
+
*/
|
|
29
|
+
constructor() {
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a <code>TranslateBody</code> from a plain JavaScript object, optionally creating a new instance.
|
|
34
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
35
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
36
|
+
* @param {module:model/TranslateBody} obj Optional instance to populate.
|
|
37
|
+
* @return {module:model/TranslateBody} The populated <code>TranslateBody</code> instance.
|
|
38
|
+
*/
|
|
39
|
+
static constructFromObject(data, obj) {
|
|
40
|
+
if (data) {
|
|
41
|
+
obj = obj || new TranslateBody();
|
|
42
|
+
if (data.hasOwnProperty('text'))
|
|
43
|
+
obj.text = ApiClient.convertToType(data['text'], ['String']);
|
|
44
|
+
if (data.hasOwnProperty('model_id'))
|
|
45
|
+
obj.modelId = ApiClient.convertToType(data['model_id'], 'String');
|
|
46
|
+
if (data.hasOwnProperty('target'))
|
|
47
|
+
obj.target = ApiClient.convertToType(data['target'], 'String');
|
|
48
|
+
if (data.hasOwnProperty('llmId'))
|
|
49
|
+
obj.llmId = ApiClient.convertToType(data['llmId'], 'String');
|
|
50
|
+
if (data.hasOwnProperty('maxChunk'))
|
|
51
|
+
obj.maxChunk = ApiClient.convertToType(data['maxChunk'], 'Number');
|
|
52
|
+
if (data.hasOwnProperty('additionalInstructions'))
|
|
53
|
+
obj.additionalInstructions = ApiClient.convertToType(data['additionalInstructions'], 'String');
|
|
54
|
+
}
|
|
55
|
+
return obj;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* An array of input text to be translated
|
|
61
|
+
* @member {Array.<String>} text
|
|
62
|
+
*/
|
|
63
|
+
TranslateBody.prototype.text = undefined;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Convienence input for legacy connections. Define a traget language by setting a source to target relationship using 2-digit language codes, for example en-es to translate into spanish. The source language is ignored. Either this or the target parameter is required.
|
|
67
|
+
* @member {String} modelId
|
|
68
|
+
* @default ''
|
|
69
|
+
*/
|
|
70
|
+
TranslateBody.prototype.modelId = '';
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* The 2-digit language code for the target language. Either this or the model_id parameter is required.
|
|
74
|
+
* @member {String} target
|
|
75
|
+
* @default ''
|
|
76
|
+
*/
|
|
77
|
+
TranslateBody.prototype.target = '';
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Optional - Pass an llm card id to override the LLM used for translation
|
|
81
|
+
* @member {String} llmId
|
|
82
|
+
* @default ''
|
|
83
|
+
*/
|
|
84
|
+
TranslateBody.prototype.llmId = '';
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Optional - Pass a maximum translation chunk token size. This can help speed up translations in the 200-2000 word range when using slower LLM's. Use a setting between 200 and 500 in these scenarios. Setting 0 or omitting this parameter unsets it.
|
|
88
|
+
* @member {Number} maxChunk
|
|
89
|
+
* @default 0
|
|
90
|
+
*/
|
|
91
|
+
TranslateBody.prototype.maxChunk = 0;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Optional - Additional prompting to be passed to the LLM. Do not casusally use this field, you will break things.
|
|
95
|
+
* @member {String} additionalInstructions
|
|
96
|
+
* @default ''
|
|
97
|
+
*/
|
|
98
|
+
TranslateBody.prototype.additionalInstructions = '';
|
|
99
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
import ApiClient from '../ApiClient';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The TranslateGlossaryBody model module.
|
|
20
|
+
* @module model/TranslateGlossaryBody
|
|
21
|
+
* @version 1.0.1
|
|
22
|
+
*/
|
|
23
|
+
export default class TranslateGlossaryBody {
|
|
24
|
+
/**
|
|
25
|
+
* Constructs a new <code>TranslateGlossaryBody</code>.
|
|
26
|
+
* @alias module:model/TranslateGlossaryBody
|
|
27
|
+
* @class
|
|
28
|
+
*/
|
|
29
|
+
constructor() {
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a <code>TranslateGlossaryBody</code> from a plain JavaScript object, optionally creating a new instance.
|
|
34
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
35
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
36
|
+
* @param {module:model/TranslateGlossaryBody} obj Optional instance to populate.
|
|
37
|
+
* @return {module:model/TranslateGlossaryBody} The populated <code>TranslateGlossaryBody</code> instance.
|
|
38
|
+
*/
|
|
39
|
+
static constructFromObject(data, obj) {
|
|
40
|
+
if (data) {
|
|
41
|
+
obj = obj || new TranslateGlossaryBody();
|
|
42
|
+
if (data.hasOwnProperty('file'))
|
|
43
|
+
obj.file = ApiClient.convertToType(data['file'], 'Blob');
|
|
44
|
+
}
|
|
45
|
+
return obj;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @member {Blob} file
|
|
51
|
+
*/
|
|
52
|
+
TranslateGlossaryBody.prototype.file = undefined;
|
|
53
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
import ApiClient from '../ApiClient';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The TranslateGlossaryBody1 model module.
|
|
20
|
+
* @module model/TranslateGlossaryBody1
|
|
21
|
+
* @version 1.0.1
|
|
22
|
+
*/
|
|
23
|
+
export default class TranslateGlossaryBody1 {
|
|
24
|
+
/**
|
|
25
|
+
* Constructs a new <code>TranslateGlossaryBody1</code>.
|
|
26
|
+
* @alias module:model/TranslateGlossaryBody1
|
|
27
|
+
* @class
|
|
28
|
+
*/
|
|
29
|
+
constructor() {
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a <code>TranslateGlossaryBody1</code> from a plain JavaScript object, optionally creating a new instance.
|
|
34
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
35
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
36
|
+
* @param {module:model/TranslateGlossaryBody1} obj Optional instance to populate.
|
|
37
|
+
* @return {module:model/TranslateGlossaryBody1} The populated <code>TranslateGlossaryBody1</code> instance.
|
|
38
|
+
*/
|
|
39
|
+
static constructFromObject(data, obj) {
|
|
40
|
+
if (data) {
|
|
41
|
+
obj = obj || new TranslateGlossaryBody1();
|
|
42
|
+
if (data.hasOwnProperty('sentences'))
|
|
43
|
+
obj.sentences = ApiClient.convertToType(data['sentences'], [[Object]]);
|
|
44
|
+
}
|
|
45
|
+
return obj;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Instead of a file upload you may pass sentence mappings
|
|
51
|
+
* @member {Array.<Array.<Object>>} sentences
|
|
52
|
+
*/
|
|
53
|
+
TranslateGlossaryBody1.prototype.sentences = undefined;
|
|
54
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeek);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeek) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
beforeEach(function() {
|
|
33
|
+
instance = new NeuralSeek.AnalyticsApi();
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
describe('(package)', function() {
|
|
37
|
+
describe('AnalyticsApi', function() {
|
|
38
|
+
describe('analytics', function() {
|
|
39
|
+
it('should call analytics successfully', function(done) {
|
|
40
|
+
// TODO: uncomment, update parameter values for analytics call
|
|
41
|
+
/*
|
|
42
|
+
var opts = {};
|
|
43
|
+
|
|
44
|
+
instance.analytics(opts, function(error, data, response) {
|
|
45
|
+
if (error) {
|
|
46
|
+
done(error);
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
done();
|
|
51
|
+
});
|
|
52
|
+
*/
|
|
53
|
+
// TODO: uncomment and complete method invocation above, then delete this line and the next:
|
|
54
|
+
done();
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
}));
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.1
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeek);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeek) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
beforeEach(function() {
|
|
33
|
+
instance = new NeuralSeek.CategorizeApi();
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
describe('(package)', function() {
|
|
37
|
+
describe('CategorizeApi', function() {
|
|
38
|
+
describe('categorize', function() {
|
|
39
|
+
it('should call categorize successfully', function(done) {
|
|
40
|
+
// TODO: uncomment, update parameter values for categorize call and complete the assertions
|
|
41
|
+
/*
|
|
42
|
+
|
|
43
|
+
instance.categorize(body, function(error, data, response) {
|
|
44
|
+
if (error) {
|
|
45
|
+
done(error);
|
|
46
|
+
return;
|
|
47
|
+
}
|
|
48
|
+
// TODO: update response assertions
|
|
49
|
+
expect(data).to.be.a(NeuralSeek.InlineResponse2005);
|
|
50
|
+
|
|
51
|
+
done();
|
|
52
|
+
});
|
|
53
|
+
*/
|
|
54
|
+
// TODO: uncomment and complete method invocation above, then delete this line and the next:
|
|
55
|
+
done();
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
}));
|