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,70 @@
|
|
|
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
|
+
describe('(package)', function() {
|
|
33
|
+
describe('InlineResponse2006', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeek.InlineResponse2006();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of InlineResponse2006', function() {
|
|
39
|
+
// TODO: update the code to test InlineResponse2006
|
|
40
|
+
expect(instance).to.be.a(NeuralSeek.InlineResponse2006);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property extractedEntities (base name: "extractedEntities")', function() {
|
|
44
|
+
// TODO: update the code to test the property extractedEntities
|
|
45
|
+
expect(instance).to.have.property('extractedEntities');
|
|
46
|
+
// expect(instance.extractedEntities).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property complete (base name: "complete")', function() {
|
|
50
|
+
// TODO: update the code to test the property complete
|
|
51
|
+
expect(instance).to.have.property('complete');
|
|
52
|
+
// expect(instance.complete).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property promptEntity (base name: "promptEntity")', function() {
|
|
56
|
+
// TODO: update the code to test the property promptEntity
|
|
57
|
+
expect(instance).to.have.property('promptEntity');
|
|
58
|
+
// expect(instance.promptEntity).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
it('should have the property slots (base name: "slots")', function() {
|
|
62
|
+
// TODO: update the code to test the property slots
|
|
63
|
+
expect(instance).to.have.property('slots');
|
|
64
|
+
// expect(instance.slots).to.be(expectedValueLiteral);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
});
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
}));
|
|
@@ -0,0 +1,52 @@
|
|
|
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
|
+
describe('(package)', function() {
|
|
33
|
+
describe('InlineResponse2006ExtractedEntities', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeek.InlineResponse2006ExtractedEntities();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of InlineResponse2006ExtractedEntities', function() {
|
|
39
|
+
// TODO: update the code to test InlineResponse2006ExtractedEntities
|
|
40
|
+
expect(instance).to.be.a(NeuralSeek.InlineResponse2006ExtractedEntities);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property entity (base name: "entity")', function() {
|
|
44
|
+
// TODO: update the code to test the property entity
|
|
45
|
+
expect(instance).to.have.property('entity');
|
|
46
|
+
// expect(instance.entity).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
}));
|
|
@@ -0,0 +1,88 @@
|
|
|
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
|
+
describe('(package)', function() {
|
|
33
|
+
describe('InlineResponse2007', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeek.InlineResponse2007();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of InlineResponse2007', function() {
|
|
39
|
+
// TODO: update the code to test InlineResponse2007
|
|
40
|
+
expect(instance).to.be.a(NeuralSeek.InlineResponse2007);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property wordCount (base name: "word_count")', function() {
|
|
44
|
+
// TODO: update the code to test the property wordCount
|
|
45
|
+
expect(instance).to.have.property('wordCount');
|
|
46
|
+
// expect(instance.wordCount).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property characterCount (base name: "character_count")', function() {
|
|
50
|
+
// TODO: update the code to test the property characterCount
|
|
51
|
+
expect(instance).to.have.property('characterCount');
|
|
52
|
+
// expect(instance.characterCount).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property detectedLanguage (base name: "detected_language")', function() {
|
|
56
|
+
// TODO: update the code to test the property detectedLanguage
|
|
57
|
+
expect(instance).to.have.property('detectedLanguage');
|
|
58
|
+
// expect(instance.detectedLanguage).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
it('should have the property detectedLanguageConfidence (base name: "detected_language_confidence")', function() {
|
|
62
|
+
// TODO: update the code to test the property detectedLanguageConfidence
|
|
63
|
+
expect(instance).to.have.property('detectedLanguageConfidence');
|
|
64
|
+
// expect(instance.detectedLanguageConfidence).to.be(expectedValueLiteral);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
it('should have the property translationGlossary (base name: "translation_glossary")', function() {
|
|
68
|
+
// TODO: update the code to test the property translationGlossary
|
|
69
|
+
expect(instance).to.have.property('translationGlossary');
|
|
70
|
+
// expect(instance.translationGlossary).to.be(expectedValueLiteral);
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
it('should have the property translationGlossaryExact (base name: "translation_glossary_exact")', function() {
|
|
74
|
+
// TODO: update the code to test the property translationGlossaryExact
|
|
75
|
+
expect(instance).to.have.property('translationGlossaryExact');
|
|
76
|
+
// expect(instance.translationGlossaryExact).to.be(expectedValueLiteral);
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
it('should have the property translations (base name: "translations")', function() {
|
|
80
|
+
// TODO: update the code to test the property translations
|
|
81
|
+
expect(instance).to.have.property('translations');
|
|
82
|
+
// expect(instance.translations).to.be(expectedValueLiteral);
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
});
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
}));
|
|
@@ -0,0 +1,52 @@
|
|
|
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
|
+
describe('(package)', function() {
|
|
33
|
+
describe('InlineResponse2007Translations', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeek.InlineResponse2007Translations();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of InlineResponse2007Translations', function() {
|
|
39
|
+
// TODO: update the code to test InlineResponse2007Translations
|
|
40
|
+
expect(instance).to.be.a(NeuralSeek.InlineResponse2007Translations);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property translation (base name: "translation")', function() {
|
|
44
|
+
// TODO: update the code to test the property translation
|
|
45
|
+
expect(instance).to.have.property('translation');
|
|
46
|
+
// expect(instance.translation).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
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
|
+
describe('(package)', function() {
|
|
33
|
+
describe('InlineResponse2008', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeek.InlineResponse2008();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of InlineResponse2008', function() {
|
|
39
|
+
// TODO: update the code to test InlineResponse2008
|
|
40
|
+
expect(instance).to.be.a(NeuralSeek.InlineResponse2008);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property language (base name: "language")', function() {
|
|
44
|
+
// TODO: update the code to test the property language
|
|
45
|
+
expect(instance).to.have.property('language');
|
|
46
|
+
// expect(instance.language).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property confidence (base name: "confidence")', function() {
|
|
50
|
+
// TODO: update the code to test the property confidence
|
|
51
|
+
expect(instance).to.have.property('confidence');
|
|
52
|
+
// expect(instance.confidence).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
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
|
+
describe('(package)', function() {
|
|
33
|
+
describe('InlineResponse2009', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeek.InlineResponse2009();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of InlineResponse2009', function() {
|
|
39
|
+
// TODO: update the code to test InlineResponse2009
|
|
40
|
+
expect(instance).to.be.a(NeuralSeek.InlineResponse2009);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property language (base name: "language")', function() {
|
|
44
|
+
// TODO: update the code to test the property language
|
|
45
|
+
expect(instance).to.have.property('language');
|
|
46
|
+
// expect(instance.language).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property confidence (base name: "confidence")', function() {
|
|
50
|
+
// TODO: update the code to test the property confidence
|
|
51
|
+
expect(instance).to.have.property('confidence');
|
|
52
|
+
// expect(instance.confidence).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,82 @@
|
|
|
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
|
+
describe('(package)', function() {
|
|
33
|
+
describe('LogExternalAgentBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeek.LogExternalAgentBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of LogExternalAgentBody', function() {
|
|
39
|
+
// TODO: update the code to test LogExternalAgentBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeek.LogExternalAgentBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property runId (base name: "runId")', function() {
|
|
44
|
+
// TODO: update the code to test the property runId
|
|
45
|
+
expect(instance).to.have.property('runId');
|
|
46
|
+
// expect(instance.runId).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property templateName (base name: "templateName")', function() {
|
|
50
|
+
// TODO: update the code to test the property templateName
|
|
51
|
+
expect(instance).to.have.property('templateName');
|
|
52
|
+
// expect(instance.templateName).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property user (base name: "user")', function() {
|
|
56
|
+
// TODO: update the code to test the property user
|
|
57
|
+
expect(instance).to.have.property('user');
|
|
58
|
+
// expect(instance.user).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
it('should have the property time (base name: "time")', function() {
|
|
62
|
+
// TODO: update the code to test the property time
|
|
63
|
+
expect(instance).to.have.property('time');
|
|
64
|
+
// expect(instance.time).to.be(expectedValueLiteral);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
it('should have the property resultsLink (base name: "resultsLink")', function() {
|
|
68
|
+
// TODO: update the code to test the property resultsLink
|
|
69
|
+
expect(instance).to.have.property('resultsLink');
|
|
70
|
+
// expect(instance.resultsLink).to.be(expectedValueLiteral);
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
it('should have the property entries (base name: "entries")', function() {
|
|
74
|
+
// TODO: update the code to test the property entries
|
|
75
|
+
expect(instance).to.have.property('entries');
|
|
76
|
+
// expect(instance.entries).to.be(expectedValueLiteral);
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
}));
|
|
@@ -0,0 +1,118 @@
|
|
|
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
|
+
describe('(package)', function() {
|
|
33
|
+
describe('LogExternalAgentEntries', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeek.LogExternalAgentEntries();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of LogExternalAgentEntries', function() {
|
|
39
|
+
// TODO: update the code to test LogExternalAgentEntries
|
|
40
|
+
expect(instance).to.be.a(NeuralSeek.LogExternalAgentEntries);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property type (base name: "type")', function() {
|
|
44
|
+
// TODO: update the code to test the property type
|
|
45
|
+
expect(instance).to.have.property('type');
|
|
46
|
+
// expect(instance.type).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property llmtime (base name: "llmtime")', function() {
|
|
50
|
+
// TODO: update the code to test the property llmtime
|
|
51
|
+
expect(instance).to.have.property('llmtime');
|
|
52
|
+
// expect(instance.llmtime).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property inputtokencount (base name: "inputtokencount")', function() {
|
|
56
|
+
// TODO: update the code to test the property inputtokencount
|
|
57
|
+
expect(instance).to.have.property('inputtokencount');
|
|
58
|
+
// expect(instance.inputtokencount).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
it('should have the property generatedtokencount (base name: "generatedtokencount")', function() {
|
|
62
|
+
// TODO: update the code to test the property generatedtokencount
|
|
63
|
+
expect(instance).to.have.property('generatedtokencount');
|
|
64
|
+
// expect(instance.generatedtokencount).to.be(expectedValueLiteral);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
it('should have the property llm (base name: "llm")', function() {
|
|
68
|
+
// TODO: update the code to test the property llm
|
|
69
|
+
expect(instance).to.have.property('llm');
|
|
70
|
+
// expect(instance.llm).to.be(expectedValueLiteral);
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
it('should have the property llmcode (base name: "llmcode")', function() {
|
|
74
|
+
// TODO: update the code to test the property llmcode
|
|
75
|
+
expect(instance).to.have.property('llmcode');
|
|
76
|
+
// expect(instance.llmcode).to.be(expectedValueLiteral);
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
it('should have the property kbtime (base name: "kbtime")', function() {
|
|
80
|
+
// TODO: update the code to test the property kbtime
|
|
81
|
+
expect(instance).to.have.property('kbtime');
|
|
82
|
+
// expect(instance.kbtime).to.be(expectedValueLiteral);
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
it('should have the property kb (base name: "kb")', function() {
|
|
86
|
+
// TODO: update the code to test the property kb
|
|
87
|
+
expect(instance).to.have.property('kb');
|
|
88
|
+
// expect(instance.kb).to.be(expectedValueLiteral);
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
it('should have the property kbScore (base name: "kbScore")', function() {
|
|
92
|
+
// TODO: update the code to test the property kbScore
|
|
93
|
+
expect(instance).to.have.property('kbScore');
|
|
94
|
+
// expect(instance.kbScore).to.be(expectedValueLiteral);
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
it('should have the property kbCoverage (base name: "kbCoverage")', function() {
|
|
98
|
+
// TODO: update the code to test the property kbCoverage
|
|
99
|
+
expect(instance).to.have.property('kbCoverage');
|
|
100
|
+
// expect(instance.kbCoverage).to.be(expectedValueLiteral);
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
it('should have the property elementTime (base name: "elementTime")', function() {
|
|
104
|
+
// TODO: update the code to test the property elementTime
|
|
105
|
+
expect(instance).to.have.property('elementTime');
|
|
106
|
+
// expect(instance.elementTime).to.be(expectedValueLiteral);
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
it('should have the property element (base name: "element")', function() {
|
|
110
|
+
// TODO: update the code to test the property element
|
|
111
|
+
expect(instance).to.have.property('element');
|
|
112
|
+
// expect(instance.element).to.be(expectedValueLiteral);
|
|
113
|
+
});
|
|
114
|
+
|
|
115
|
+
});
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
}));
|
|
@@ -0,0 +1,64 @@
|
|
|
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
|
+
describe('(package)', function() {
|
|
33
|
+
describe('LogsBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeek.LogsBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of LogsBody', function() {
|
|
39
|
+
// TODO: update the code to test LogsBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeek.LogsBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property limit (base name: "limit")', function() {
|
|
44
|
+
// TODO: update the code to test the property limit
|
|
45
|
+
expect(instance).to.have.property('limit');
|
|
46
|
+
// expect(instance.limit).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property skip (base name: "skip")', function() {
|
|
50
|
+
// TODO: update the code to test the property skip
|
|
51
|
+
expect(instance).to.have.property('skip');
|
|
52
|
+
// expect(instance.skip).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property search (base name: "search")', function() {
|
|
56
|
+
// TODO: update the code to test the property search
|
|
57
|
+
expect(instance).to.have.property('search');
|
|
58
|
+
// expect(instance.search).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
}));
|