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.
- package/README.md +163 -0
- package/docs/AddIntentBody.md +10 -0
- package/docs/AnswersApi.md +160 -0
- package/docs/CategoriesApi.md +58 -0
- package/docs/CategoryBody.md +8 -0
- package/docs/CurateBody.md +9 -0
- package/docs/CuratedDataApi.md +59 -0
- package/docs/DelAnswerBody.md +6 -0
- package/docs/DelQuestionBody.md +7 -0
- package/docs/DelUserDataBody.md +7 -0
- package/docs/EditAnswerBody.md +7 -0
- package/docs/ExploreFilesBody.md +6 -0
- package/docs/ExploreUploadBody.md +6 -0
- package/docs/FdelBody.md +7 -0
- package/docs/FindAnswerIdBody.md +6 -0
- package/docs/FlagBody.md +7 -0
- package/docs/GodocumentBody.md +9 -0
- package/docs/GomaistroBody.md +7 -0
- package/docs/GomaistrotokensBody.md +7 -0
- package/docs/GooverBody.md +9 -0
- package/docs/GoperfBody.md +7 -0
- package/docs/GosemanticBody.md +9 -0
- package/docs/GotokensBody.md +7 -0
- package/docs/GovernanceApi.md +410 -0
- package/docs/IntentsApi.md +364 -0
- package/docs/LoadUserResponseBody.md +7 -0
- package/docs/MAIstroApi.md +265 -0
- package/docs/MaistroFilesBody.md +8 -0
- package/docs/MaistroOCRBody.md +6 -0
- package/docs/MergeBody.md +7 -0
- package/docs/QuestionsApi.md +58 -0
- package/docs/RenBody.md +7 -0
- package/docs/UnmergeBody.md +6 -0
- package/git_push.sh +52 -0
- package/mocha.opts +1 -0
- package/package.json +55 -0
- package/src/ApiClient.js +585 -0
- package/src/api/AnswersApi.js +179 -0
- package/src/api/CategoriesApi.js +85 -0
- package/src/api/CuratedDataApi.js +82 -0
- package/src/api/GovernanceApi.js +408 -0
- package/src/api/IntentsApi.js +367 -0
- package/src/api/MAIstroApi.js +262 -0
- package/src/api/QuestionsApi.js +85 -0
- package/src/index.js +279 -0
- package/src/model/AddIntentBody.js +91 -0
- package/src/model/CategoryBody.js +71 -0
- package/src/model/CurateBody.js +75 -0
- package/src/model/DelAnswerBody.js +55 -0
- package/src/model/DelQuestionBody.js +64 -0
- package/src/model/DelUserDataBody.js +62 -0
- package/src/model/EditAnswerBody.js +64 -0
- package/src/model/ExploreFilesBody.js +55 -0
- package/src/model/ExploreUploadBody.js +53 -0
- package/src/model/FdelBody.js +62 -0
- package/src/model/FindAnswerIdBody.js +55 -0
- package/src/model/FlagBody.js +61 -0
- package/src/model/GodocumentBody.js +76 -0
- package/src/model/GomaistroBody.js +62 -0
- package/src/model/GomaistrotokensBody.js +62 -0
- package/src/model/GooverBody.js +76 -0
- package/src/model/GoperfBody.js +62 -0
- package/src/model/GosemanticBody.js +76 -0
- package/src/model/GotokensBody.js +62 -0
- package/src/model/LoadUserResponseBody.js +64 -0
- package/src/model/MaistroFilesBody.js +69 -0
- package/src/model/MaistroOCRBody.js +53 -0
- package/src/model/MergeBody.js +64 -0
- package/src/model/RenBody.js +62 -0
- package/src/model/UnmergeBody.js +53 -0
- package/test/api/AnswersApi.spec.js +95 -0
- package/test/api/CategoriesApi.spec.js +59 -0
- package/test/api/CuratedDataApi.spec.js +60 -0
- package/test/api/GovernanceApi.spec.js +185 -0
- package/test/api/IntentsApi.spec.js +167 -0
- package/test/api/MAIstroApi.spec.js +134 -0
- package/test/api/QuestionsApi.spec.js +59 -0
- package/test/assert-equals.js +81 -0
- package/test/model/AddIntentBody.spec.js +76 -0
- package/test/model/CategoryBody.spec.js +64 -0
- package/test/model/CurateBody.spec.js +70 -0
- package/test/model/DelAnswerBody.spec.js +52 -0
- package/test/model/DelQuestionBody.spec.js +58 -0
- package/test/model/DelUserDataBody.spec.js +58 -0
- package/test/model/EditAnswerBody.spec.js +58 -0
- package/test/model/ExploreFilesBody.spec.js +52 -0
- package/test/model/ExploreUploadBody.spec.js +52 -0
- package/test/model/FdelBody.spec.js +58 -0
- package/test/model/FindAnswerIdBody.spec.js +52 -0
- package/test/model/FlagBody.spec.js +58 -0
- package/test/model/GodocumentBody.spec.js +70 -0
- package/test/model/GomaistroBody.spec.js +58 -0
- package/test/model/GomaistrotokensBody.spec.js +58 -0
- package/test/model/GooverBody.spec.js +70 -0
- package/test/model/GoperfBody.spec.js +58 -0
- package/test/model/GosemanticBody.spec.js +70 -0
- package/test/model/GotokensBody.spec.js +58 -0
- package/test/model/LoadUserResponseBody.spec.js +58 -0
- package/test/model/MaistroFilesBody.spec.js +64 -0
- package/test/model/MaistroOCRBody.spec.js +52 -0
- package/test/model/MergeBody.spec.js +58 -0
- package/test/model/RenBody.spec.js +58 -0
- package/test/model/UnmergeBody.spec.js +52 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('AddIntentBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.AddIntentBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of AddIntentBody', function() {
|
|
39
|
+
// TODO: update the code to test AddIntentBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.AddIntentBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property intent (base name: "intent")', function() {
|
|
44
|
+
// TODO: update the code to test the property intent
|
|
45
|
+
expect(instance).to.have.property('intent');
|
|
46
|
+
// expect(instance.intent).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property question (base name: "question")', function() {
|
|
50
|
+
// TODO: update the code to test the property question
|
|
51
|
+
expect(instance).to.have.property('question');
|
|
52
|
+
// expect(instance.question).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property category (base name: "category")', function() {
|
|
56
|
+
// TODO: update the code to test the property category
|
|
57
|
+
expect(instance).to.have.property('category');
|
|
58
|
+
// expect(instance.category).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
it('should have the property answer (base name: "answer")', function() {
|
|
62
|
+
// TODO: update the code to test the property answer
|
|
63
|
+
expect(instance).to.have.property('answer');
|
|
64
|
+
// expect(instance.answer).to.be(expectedValueLiteral);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
it('should have the property maistro (base name: "maistro")', function() {
|
|
68
|
+
// TODO: update the code to test the property maistro
|
|
69
|
+
expect(instance).to.have.property('maistro');
|
|
70
|
+
// expect(instance.maistro).to.be(expectedValueLiteral);
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
}));
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('CategoryBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.CategoryBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of CategoryBody', function() {
|
|
39
|
+
// TODO: update the code to test CategoryBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.CategoryBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property intent (base name: "intent")', function() {
|
|
44
|
+
// TODO: update the code to test the property intent
|
|
45
|
+
expect(instance).to.have.property('intent');
|
|
46
|
+
// expect(instance.intent).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property intents (base name: "intents")', function() {
|
|
50
|
+
// TODO: update the code to test the property intents
|
|
51
|
+
expect(instance).to.have.property('intents');
|
|
52
|
+
// expect(instance.intents).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property category (base name: "category")', function() {
|
|
56
|
+
// TODO: update the code to test the property category
|
|
57
|
+
expect(instance).to.have.property('category');
|
|
58
|
+
// expect(instance.category).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
}));
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('CurateBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.CurateBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of CurateBody', function() {
|
|
39
|
+
// TODO: update the code to test CurateBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.CurateBody);
|
|
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
|
+
it('should have the property filters (base name: "filters")', function() {
|
|
62
|
+
// TODO: update the code to test the property filters
|
|
63
|
+
expect(instance).to.have.property('filters');
|
|
64
|
+
// expect(instance.filters).to.be(expectedValueLiteral);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
});
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
}));
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('DelAnswerBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.DelAnswerBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of DelAnswerBody', function() {
|
|
39
|
+
// TODO: update the code to test DelAnswerBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.DelAnswerBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property timestamp (base name: "timestamp")', function() {
|
|
44
|
+
// TODO: update the code to test the property timestamp
|
|
45
|
+
expect(instance).to.have.property('timestamp');
|
|
46
|
+
// expect(instance.timestamp).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('DelQuestionBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.DelQuestionBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of DelQuestionBody', function() {
|
|
39
|
+
// TODO: update the code to test DelQuestionBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.DelQuestionBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property question (base name: "question")', function() {
|
|
44
|
+
// TODO: update the code to test the property question
|
|
45
|
+
expect(instance).to.have.property('question');
|
|
46
|
+
// expect(instance.question).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property intent (base name: "intent")', function() {
|
|
50
|
+
// TODO: update the code to test the property intent
|
|
51
|
+
expect(instance).to.have.property('intent');
|
|
52
|
+
// expect(instance.intent).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('DelUserDataBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.DelUserDataBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of DelUserDataBody', function() {
|
|
39
|
+
// TODO: update the code to test DelUserDataBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.DelUserDataBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property toDel (base name: "toDel")', function() {
|
|
44
|
+
// TODO: update the code to test the property toDel
|
|
45
|
+
expect(instance).to.have.property('toDel');
|
|
46
|
+
// expect(instance.toDel).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property delal (base name: "delal")', function() {
|
|
50
|
+
// TODO: update the code to test the property delal
|
|
51
|
+
expect(instance).to.have.property('delal');
|
|
52
|
+
// expect(instance.delal).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('EditAnswerBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.EditAnswerBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of EditAnswerBody', function() {
|
|
39
|
+
// TODO: update the code to test EditAnswerBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.EditAnswerBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property timestamp (base name: "timestamp")', function() {
|
|
44
|
+
// TODO: update the code to test the property timestamp
|
|
45
|
+
expect(instance).to.have.property('timestamp');
|
|
46
|
+
// expect(instance.timestamp).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property a (base name: "a")', function() {
|
|
50
|
+
// TODO: update the code to test the property a
|
|
51
|
+
expect(instance).to.have.property('a');
|
|
52
|
+
// expect(instance.a).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('ExploreFilesBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.ExploreFilesBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of ExploreFilesBody', function() {
|
|
39
|
+
// TODO: update the code to test ExploreFilesBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.ExploreFilesBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property file (base name: "file")', function() {
|
|
44
|
+
// TODO: update the code to test the property file
|
|
45
|
+
expect(instance).to.have.property('file');
|
|
46
|
+
// expect(instance.file).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
}));
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('ExploreUploadBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.ExploreUploadBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of ExploreUploadBody', function() {
|
|
39
|
+
// TODO: update the code to test ExploreUploadBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.ExploreUploadBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property file (base name: "file")', function() {
|
|
44
|
+
// TODO: update the code to test the property file
|
|
45
|
+
expect(instance).to.have.property('file');
|
|
46
|
+
// expect(instance.file).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('FdelBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.FdelBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of FdelBody', function() {
|
|
39
|
+
// TODO: update the code to test FdelBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.FdelBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property name (base name: "name")', function() {
|
|
44
|
+
// TODO: update the code to test the property name
|
|
45
|
+
expect(instance).to.have.property('name');
|
|
46
|
+
// expect(instance.name).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property names (base name: "names")', function() {
|
|
50
|
+
// TODO: update the code to test the property names
|
|
51
|
+
expect(instance).to.have.property('names');
|
|
52
|
+
// expect(instance.names).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
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.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('FindAnswerIdBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.FindAnswerIdBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of FindAnswerIdBody', function() {
|
|
39
|
+
// TODO: update the code to test FindAnswerIdBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.FindAnswerIdBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property answer (base name: "answer")', function() {
|
|
44
|
+
// TODO: update the code to test the property answer
|
|
45
|
+
expect(instance).to.have.property('answer');
|
|
46
|
+
// expect(instance.answer).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
}));
|