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.
Files changed (236) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +206 -0
  3. package/docs/AnalyticsApi.md +59 -0
  4. package/docs/AnalyticsBody.md +6 -0
  5. package/docs/AnswerRatingsBody.md +7 -0
  6. package/docs/CategorizeApi.md +58 -0
  7. package/docs/CategorizeBody.md +6 -0
  8. package/docs/ChatCompletionsBody.md +9 -0
  9. package/docs/ChatcompletionsMessages.md +16 -0
  10. package/docs/ChatcompletionsTools.md +13 -0
  11. package/docs/ExtractBody.md +11 -0
  12. package/docs/ExtractEntitiesApi.md +58 -0
  13. package/docs/GuardrailsApi.md +109 -0
  14. package/docs/IdentifysingleBody.md +6 -0
  15. package/docs/InlineResponse200.md +6 -0
  16. package/docs/InlineResponse2001.md +8 -0
  17. package/docs/InlineResponse20010.md +6 -0
  18. package/docs/InlineResponse20011.md +9 -0
  19. package/docs/InlineResponse20012.md +7 -0
  20. package/docs/InlineResponse20013.md +6 -0
  21. package/docs/InlineResponse2002.md +10 -0
  22. package/docs/InlineResponse2002Render.md +9 -0
  23. package/docs/InlineResponse2003.md +6 -0
  24. package/docs/InlineResponse2003Data.md +10 -0
  25. package/docs/InlineResponse2004.md +10 -0
  26. package/docs/InlineResponse2004Choices.md +8 -0
  27. package/docs/InlineResponse2004Message.md +14 -0
  28. package/docs/InlineResponse2005.md +9 -0
  29. package/docs/InlineResponse2005TopIntents.md +7 -0
  30. package/docs/InlineResponse2006.md +9 -0
  31. package/docs/InlineResponse2006ExtractedEntities.md +6 -0
  32. package/docs/InlineResponse2007.md +12 -0
  33. package/docs/InlineResponse2007Translations.md +6 -0
  34. package/docs/InlineResponse2008.md +7 -0
  35. package/docs/InlineResponse2009.md +7 -0
  36. package/docs/KeysApi.md +99 -0
  37. package/docs/LogExternalAgentBody.md +11 -0
  38. package/docs/LogExternalAgentEntries.md +34 -0
  39. package/docs/LogsApi.md +110 -0
  40. package/docs/LogsBody.md +8 -0
  41. package/docs/MAIstroAgentRatingsApi.md +109 -0
  42. package/docs/MAIstroApi.md +367 -0
  43. package/docs/MaistroBatchBody.md +9 -0
  44. package/docs/MaistroBody.md +9 -0
  45. package/docs/MaistroOptions.md +20 -0
  46. package/docs/MaistroRateBody.md +9 -0
  47. package/docs/MaistroRatingsBody.md +7 -0
  48. package/docs/MaistroStreamBody.md +9 -0
  49. package/docs/MaistroStreamOptions.md +19 -0
  50. package/docs/PiiBody.md +6 -0
  51. package/docs/RateBody.md +8 -0
  52. package/docs/ScoreBody.md +7 -0
  53. package/docs/Seek.md +9 -0
  54. package/docs/SeekAnswerRatingsApi.md +109 -0
  55. package/docs/SeekApi.md +109 -0
  56. package/docs/SeekOptions.md +24 -0
  57. package/docs/SeekResponse.md +32 -0
  58. package/docs/SeekResponsePassages.md +11 -0
  59. package/docs/SeekResponseVariablesExpanded.md +7 -0
  60. package/docs/SeekStreamBody.md +9 -0
  61. package/docs/SeekStreamOptions.md +23 -0
  62. package/docs/SeekStreamOptionsLastTurn.md +7 -0
  63. package/docs/SeekStreamOptionsPersonalize.md +10 -0
  64. package/docs/SeekStreamParams.md +7 -0
  65. package/docs/SeekStreamUserSession.md +7 -0
  66. package/docs/SeekStreamUserSessionMetadata.md +6 -0
  67. package/docs/SeekStreamUserSessionSystem.md +6 -0
  68. package/docs/ServiceTestApi.md +46 -0
  69. package/docs/TestBody.md +6 -0
  70. package/docs/TestBody1.md +6 -0
  71. package/docs/TestQuestionsApi.md +107 -0
  72. package/docs/TrainBody.md +7 -0
  73. package/docs/TrainKBApi.md +58 -0
  74. package/docs/TranslateApi.md +259 -0
  75. package/docs/TranslateBody.md +11 -0
  76. package/docs/TranslateGlossaryBody.md +6 -0
  77. package/docs/TranslateGlossaryBody1.md +6 -0
  78. package/docs/UserDataApi.md +59 -0
  79. package/git_push.sh +52 -0
  80. package/mocha.opts +1 -0
  81. package/package.json +55 -0
  82. package/src/AnalyticsApi.js +82 -0
  83. package/src/ApiClient.js +585 -0
  84. package/src/CategorizeApi.js +87 -0
  85. package/src/ExtractEntitiesApi.js +87 -0
  86. package/src/GuardrailsApi.js +134 -0
  87. package/src/KeysApi.js +122 -0
  88. package/src/LogsApi.js +133 -0
  89. package/src/MAIstroAgentRatingsApi.js +134 -0
  90. package/src/MAIstroApi.js +366 -0
  91. package/src/SeekAnswerRatingsApi.js +134 -0
  92. package/src/SeekApi.js +136 -0
  93. package/src/ServiceTestApi.js +79 -0
  94. package/src/TestQuestionsApi.js +124 -0
  95. package/src/TrainKBApi.js +85 -0
  96. package/src/TranslateApi.js +277 -0
  97. package/src/UserDataApi.js +81 -0
  98. package/src/index.js +587 -0
  99. package/src/model/AnalyticsBody.js +54 -0
  100. package/src/model/AnswerRatingsBody.js +62 -0
  101. package/src/model/CategorizeBody.js +55 -0
  102. package/src/model/ChatCompletionsBody.js +80 -0
  103. package/src/model/ChatcompletionsMessages.js +92 -0
  104. package/src/model/ChatcompletionsTools.js +75 -0
  105. package/src/model/ExtractBody.js +94 -0
  106. package/src/model/IdentifysingleBody.js +55 -0
  107. package/src/model/InlineResponse200.js +56 -0
  108. package/src/model/InlineResponse2001.js +70 -0
  109. package/src/model/InlineResponse20010.js +54 -0
  110. package/src/model/InlineResponse20011.js +81 -0
  111. package/src/model/InlineResponse20012.js +60 -0
  112. package/src/model/InlineResponse20013.js +55 -0
  113. package/src/model/InlineResponse2002.js +88 -0
  114. package/src/model/InlineResponse2002Render.js +80 -0
  115. package/src/model/InlineResponse2003.js +56 -0
  116. package/src/model/InlineResponse2003Data.js +88 -0
  117. package/src/model/InlineResponse2004.js +86 -0
  118. package/src/model/InlineResponse2004Choices.js +70 -0
  119. package/src/model/InlineResponse2004Message.js +80 -0
  120. package/src/model/InlineResponse2005.js +80 -0
  121. package/src/model/InlineResponse2005TopIntents.js +64 -0
  122. package/src/model/InlineResponse2006.js +79 -0
  123. package/src/model/InlineResponse2006ExtractedEntities.js +55 -0
  124. package/src/model/InlineResponse2007.js +103 -0
  125. package/src/model/InlineResponse2007Translations.js +55 -0
  126. package/src/model/InlineResponse2008.js +63 -0
  127. package/src/model/InlineResponse2009.js +63 -0
  128. package/src/model/LogExternalAgentBody.js +104 -0
  129. package/src/model/LogExternalAgentEntries.js +195 -0
  130. package/src/model/LogsBody.js +73 -0
  131. package/src/model/MaistroBatchBody.js +81 -0
  132. package/src/model/MaistroBody.js +81 -0
  133. package/src/model/MaistroOptions.js +176 -0
  134. package/src/model/MaistroRateBody.js +78 -0
  135. package/src/model/MaistroRatingsBody.js +62 -0
  136. package/src/model/MaistroStreamBody.js +81 -0
  137. package/src/model/MaistroStreamOptions.js +167 -0
  138. package/src/model/PiiBody.js +55 -0
  139. package/src/model/RateBody.js +70 -0
  140. package/src/model/ScoreBody.js +63 -0
  141. package/src/model/Seek.js +82 -0
  142. package/src/model/SeekOptions.js +216 -0
  143. package/src/model/SeekResponse.js +281 -0
  144. package/src/model/SeekResponsePassages.js +99 -0
  145. package/src/model/SeekResponseVariablesExpanded.js +64 -0
  146. package/src/model/SeekStreamBody.js +82 -0
  147. package/src/model/SeekStreamOptions.js +207 -0
  148. package/src/model/SeekStreamOptionsLastTurn.js +64 -0
  149. package/src/model/SeekStreamOptionsPersonalize.js +91 -0
  150. package/src/model/SeekStreamParams.js +64 -0
  151. package/src/model/SeekStreamUserSession.js +63 -0
  152. package/src/model/SeekStreamUserSessionMetadata.js +55 -0
  153. package/src/model/SeekStreamUserSessionSystem.js +55 -0
  154. package/src/model/TestBody.js +53 -0
  155. package/src/model/TestBody1.js +55 -0
  156. package/src/model/TrainBody.js +63 -0
  157. package/src/model/TranslateBody.js +99 -0
  158. package/src/model/TranslateGlossaryBody.js +53 -0
  159. package/src/model/TranslateGlossaryBody1.js +54 -0
  160. package/test/api/AnalyticsApi.spec.js +60 -0
  161. package/test/api/CategorizeApi.spec.js +61 -0
  162. package/test/api/ExtractEntitiesApi.spec.js +61 -0
  163. package/test/api/GuardrailsApi.spec.js +85 -0
  164. package/test/api/KeysApi.spec.js +79 -0
  165. package/test/api/LogsApi.spec.js +88 -0
  166. package/test/api/MAIstroAgentRatingsApi.spec.js +79 -0
  167. package/test/api/MAIstroApi.spec.js +180 -0
  168. package/test/api/SeekAnswerRatingsApi.spec.js +79 -0
  169. package/test/api/SeekApi.spec.js +81 -0
  170. package/test/api/ServiceTestApi.spec.js +59 -0
  171. package/test/api/TestQuestionsApi.spec.js +78 -0
  172. package/test/api/TrainKBApi.spec.js +59 -0
  173. package/test/api/TranslateApi.spec.js +143 -0
  174. package/test/api/UserDataApi.spec.js +60 -0
  175. package/test/assert-equals.js +81 -0
  176. package/test/model/AnalyticsBody.spec.js +52 -0
  177. package/test/model/AnswerRatingsBody.spec.js +58 -0
  178. package/test/model/CategorizeBody.spec.js +52 -0
  179. package/test/model/ChatCompletionsBody.spec.js +70 -0
  180. package/test/model/ChatcompletionsMessages.spec.js +58 -0
  181. package/test/model/ChatcompletionsTools.spec.js +58 -0
  182. package/test/model/ExtractBody.spec.js +82 -0
  183. package/test/model/IdentifysingleBody.spec.js +52 -0
  184. package/test/model/InlineResponse200.spec.js +52 -0
  185. package/test/model/InlineResponse2001.spec.js +64 -0
  186. package/test/model/InlineResponse20010.spec.js +52 -0
  187. package/test/model/InlineResponse20011.spec.js +70 -0
  188. package/test/model/InlineResponse20012.spec.js +58 -0
  189. package/test/model/InlineResponse20013.spec.js +52 -0
  190. package/test/model/InlineResponse2002.spec.js +76 -0
  191. package/test/model/InlineResponse2002Render.spec.js +70 -0
  192. package/test/model/InlineResponse2003.spec.js +52 -0
  193. package/test/model/InlineResponse2003Data.spec.js +76 -0
  194. package/test/model/InlineResponse2004.spec.js +76 -0
  195. package/test/model/InlineResponse2004Choices.spec.js +64 -0
  196. package/test/model/InlineResponse2004Message.spec.js +58 -0
  197. package/test/model/InlineResponse2005.spec.js +70 -0
  198. package/test/model/InlineResponse2005TopIntents.spec.js +58 -0
  199. package/test/model/InlineResponse2006.spec.js +70 -0
  200. package/test/model/InlineResponse2006ExtractedEntities.spec.js +52 -0
  201. package/test/model/InlineResponse2007.spec.js +88 -0
  202. package/test/model/InlineResponse2007Translations.spec.js +52 -0
  203. package/test/model/InlineResponse2008.spec.js +58 -0
  204. package/test/model/InlineResponse2009.spec.js +58 -0
  205. package/test/model/LogExternalAgentBody.spec.js +82 -0
  206. package/test/model/LogExternalAgentEntries.spec.js +118 -0
  207. package/test/model/LogsBody.spec.js +64 -0
  208. package/test/model/MaistroBatchBody.spec.js +70 -0
  209. package/test/model/MaistroBody.spec.js +70 -0
  210. package/test/model/MaistroOptions.spec.js +136 -0
  211. package/test/model/MaistroRateBody.spec.js +70 -0
  212. package/test/model/MaistroRatingsBody.spec.js +58 -0
  213. package/test/model/MaistroStreamBody.spec.js +70 -0
  214. package/test/model/MaistroStreamOptions.spec.js +130 -0
  215. package/test/model/PiiBody.spec.js +52 -0
  216. package/test/model/RateBody.spec.js +64 -0
  217. package/test/model/ScoreBody.spec.js +58 -0
  218. package/test/model/Seek.spec.js +70 -0
  219. package/test/model/SeekOptions.spec.js +160 -0
  220. package/test/model/SeekResponse.spec.js +208 -0
  221. package/test/model/SeekResponsePassages.spec.js +82 -0
  222. package/test/model/SeekResponseVariablesExpanded.spec.js +58 -0
  223. package/test/model/SeekStreamBody.spec.js +70 -0
  224. package/test/model/SeekStreamOptions.spec.js +154 -0
  225. package/test/model/SeekStreamOptionsLastTurn.spec.js +58 -0
  226. package/test/model/SeekStreamOptionsPersonalize.spec.js +76 -0
  227. package/test/model/SeekStreamParams.spec.js +58 -0
  228. package/test/model/SeekStreamUserSession.spec.js +58 -0
  229. package/test/model/SeekStreamUserSessionMetadata.spec.js +52 -0
  230. package/test/model/SeekStreamUserSessionSystem.spec.js +52 -0
  231. package/test/model/TestBody.spec.js +52 -0
  232. package/test/model/TestBody1.spec.js +52 -0
  233. package/test/model/TrainBody.spec.js +58 -0
  234. package/test/model/TranslateBody.spec.js +82 -0
  235. package/test/model/TranslateGlossaryBody.spec.js +52 -0
  236. package/test/model/TranslateGlossaryBody1.spec.js +52 -0
@@ -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('RateBody', function() {
34
+ beforeEach(function() {
35
+ instance = new NeuralSeek.RateBody();
36
+ });
37
+
38
+ it('should create an instance of RateBody', function() {
39
+ // TODO: update the code to test RateBody
40
+ expect(instance).to.be.a(NeuralSeek.RateBody);
41
+ });
42
+
43
+ it('should have the property answerId (base name: "answerId")', function() {
44
+ // TODO: update the code to test the property answerId
45
+ expect(instance).to.have.property('answerId');
46
+ // expect(instance.answerId).to.be(expectedValueLiteral);
47
+ });
48
+
49
+ it('should have the property score (base name: "score")', function() {
50
+ // TODO: update the code to test the property score
51
+ expect(instance).to.have.property('score');
52
+ // expect(instance.score).to.be(expectedValueLiteral);
53
+ });
54
+
55
+ it('should have the property feedback (base name: "feedback")', function() {
56
+ // TODO: update the code to test the property feedback
57
+ expect(instance).to.have.property('feedback');
58
+ // expect(instance.feedback).to.be(expectedValueLiteral);
59
+ });
60
+
61
+ });
62
+ });
63
+
64
+ }));
@@ -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('ScoreBody', function() {
34
+ beforeEach(function() {
35
+ instance = new NeuralSeek.ScoreBody();
36
+ });
37
+
38
+ it('should create an instance of ScoreBody', function() {
39
+ // TODO: update the code to test ScoreBody
40
+ expect(instance).to.be.a(NeuralSeek.ScoreBody);
41
+ });
42
+
43
+ it('should have the property text (base name: "text")', function() {
44
+ // TODO: update the code to test the property text
45
+ expect(instance).to.have.property('text');
46
+ // expect(instance.text).to.be(expectedValueLiteral);
47
+ });
48
+
49
+ it('should have the property passages (base name: "passages")', function() {
50
+ // TODO: update the code to test the property passages
51
+ expect(instance).to.have.property('passages');
52
+ // expect(instance.passages).to.be(expectedValueLiteral);
53
+ });
54
+
55
+ });
56
+ });
57
+
58
+ }));
@@ -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('Seek', function() {
34
+ beforeEach(function() {
35
+ instance = new NeuralSeek.Seek();
36
+ });
37
+
38
+ it('should create an instance of Seek', function() {
39
+ // TODO: update the code to test Seek
40
+ expect(instance).to.be.a(NeuralSeek.Seek);
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 userSession (base name: "user_session")', function() {
50
+ // TODO: update the code to test the property userSession
51
+ expect(instance).to.have.property('userSession');
52
+ // expect(instance.userSession).to.be(expectedValueLiteral);
53
+ });
54
+
55
+ it('should have the property params (base name: "params")', function() {
56
+ // TODO: update the code to test the property params
57
+ expect(instance).to.have.property('params');
58
+ // expect(instance.params).to.be(expectedValueLiteral);
59
+ });
60
+
61
+ it('should have the property options (base name: "options")', function() {
62
+ // TODO: update the code to test the property options
63
+ expect(instance).to.have.property('options');
64
+ // expect(instance.options).to.be(expectedValueLiteral);
65
+ });
66
+
67
+ });
68
+ });
69
+
70
+ }));
@@ -0,0 +1,160 @@
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('SeekOptions', function() {
34
+ beforeEach(function() {
35
+ instance = new NeuralSeek.SeekOptions();
36
+ });
37
+
38
+ it('should create an instance of SeekOptions', function() {
39
+ // TODO: update the code to test SeekOptions
40
+ expect(instance).to.be.a(NeuralSeek.SeekOptions);
41
+ });
42
+
43
+ it('should have the property personalize (base name: "personalize")', function() {
44
+ // TODO: update the code to test the property personalize
45
+ expect(instance).to.have.property('personalize');
46
+ // expect(instance.personalize).to.be(expectedValueLiteral);
47
+ });
48
+
49
+ it('should have the property proposalID (base name: "proposalID")', function() {
50
+ // TODO: update the code to test the property proposalID
51
+ expect(instance).to.have.property('proposalID');
52
+ // expect(instance.proposalID).to.be(expectedValueLiteral);
53
+ });
54
+
55
+ it('should have the property streaming (base name: "streaming")', function() {
56
+ // TODO: update the code to test the property streaming
57
+ expect(instance).to.have.property('streaming');
58
+ // expect(instance.streaming).to.be(expectedValueLiteral);
59
+ });
60
+
61
+ it('should have the property seekLLM (base name: "seekLLM")', function() {
62
+ // TODO: update the code to test the property seekLLM
63
+ expect(instance).to.have.property('seekLLM');
64
+ // expect(instance.seekLLM).to.be(expectedValueLiteral);
65
+ });
66
+
67
+ it('should have the property language (base name: "language")', function() {
68
+ // TODO: update the code to test the property language
69
+ expect(instance).to.have.property('language');
70
+ // expect(instance.language).to.be(expectedValueLiteral);
71
+ });
72
+
73
+ it('should have the property filter (base name: "filter")', function() {
74
+ // TODO: update the code to test the property filter
75
+ expect(instance).to.have.property('filter');
76
+ // expect(instance.filter).to.be(expectedValueLiteral);
77
+ });
78
+
79
+ it('should have the property lastTurn (base name: "lastTurn")', function() {
80
+ // TODO: update the code to test the property lastTurn
81
+ expect(instance).to.have.property('lastTurn');
82
+ // expect(instance.lastTurn).to.be(expectedValueLiteral);
83
+ });
84
+
85
+ it('should have the property promptEngineering (base name: "promptEngineering")', function() {
86
+ // TODO: update the code to test the property promptEngineering
87
+ expect(instance).to.have.property('promptEngineering');
88
+ // expect(instance.promptEngineering).to.be(expectedValueLiteral);
89
+ });
90
+
91
+ it('should have the property promptEngineeringPhrase (base name: "promptEngineeringPhrase")', function() {
92
+ // TODO: update the code to test the property promptEngineeringPhrase
93
+ expect(instance).to.have.property('promptEngineeringPhrase');
94
+ // expect(instance.promptEngineeringPhrase).to.be(expectedValueLiteral);
95
+ });
96
+
97
+ it('should have the property answerLength (base name: "answerLength")', function() {
98
+ // TODO: update the code to test the property answerLength
99
+ expect(instance).to.have.property('answerLength');
100
+ // expect(instance.answerLength).to.be(expectedValueLiteral);
101
+ });
102
+
103
+ it('should have the property url (base name: "url")', function() {
104
+ // TODO: update the code to test the property url
105
+ expect(instance).to.have.property('url');
106
+ // expect(instance.url).to.be(expectedValueLiteral);
107
+ });
108
+
109
+ it('should have the property stump (base name: "stump")', function() {
110
+ // TODO: update the code to test the property stump
111
+ expect(instance).to.have.property('stump');
112
+ // expect(instance.stump).to.be(expectedValueLiteral);
113
+ });
114
+
115
+ it('should have the property includeSourceResults (base name: "includeSourceResults")', function() {
116
+ // TODO: update the code to test the property includeSourceResults
117
+ expect(instance).to.have.property('includeSourceResults');
118
+ // expect(instance.includeSourceResults).to.be(expectedValueLiteral);
119
+ });
120
+
121
+ it('should have the property includeHighlights (base name: "includeHighlights")', function() {
122
+ // TODO: update the code to test the property includeHighlights
123
+ expect(instance).to.have.property('includeHighlights');
124
+ // expect(instance.includeHighlights).to.be(expectedValueLiteral);
125
+ });
126
+
127
+ it('should have the property includeSourceResultsFormatted (base name: "includeSourceResultsFormatted")', function() {
128
+ // TODO: update the code to test the property includeSourceResultsFormatted
129
+ expect(instance).to.have.property('includeSourceResultsFormatted');
130
+ // expect(instance.includeSourceResultsFormatted).to.be(expectedValueLiteral);
131
+ });
132
+
133
+ it('should have the property sourceResultsNumber (base name: "sourceResultsNumber")', function() {
134
+ // TODO: update the code to test the property sourceResultsNumber
135
+ expect(instance).to.have.property('sourceResultsNumber');
136
+ // expect(instance.sourceResultsNumber).to.be(expectedValueLiteral);
137
+ });
138
+
139
+ it('should have the property sourceResultsSummaryLength (base name: "sourceResultsSummaryLength")', function() {
140
+ // TODO: update the code to test the property sourceResultsSummaryLength
141
+ expect(instance).to.have.property('sourceResultsSummaryLength');
142
+ // expect(instance.sourceResultsSummaryLength).to.be(expectedValueLiteral);
143
+ });
144
+
145
+ it('should have the property returnVariables (base name: "returnVariables")', function() {
146
+ // TODO: update the code to test the property returnVariables
147
+ expect(instance).to.have.property('returnVariables');
148
+ // expect(instance.returnVariables).to.be(expectedValueLiteral);
149
+ });
150
+
151
+ it('should have the property returnVariablesExpanded (base name: "returnVariablesExpanded")', function() {
152
+ // TODO: update the code to test the property returnVariablesExpanded
153
+ expect(instance).to.have.property('returnVariablesExpanded');
154
+ // expect(instance.returnVariablesExpanded).to.be(expectedValueLiteral);
155
+ });
156
+
157
+ });
158
+ });
159
+
160
+ }));
@@ -0,0 +1,208 @@
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('SeekResponse', function() {
34
+ beforeEach(function() {
35
+ instance = new NeuralSeek.SeekResponse();
36
+ });
37
+
38
+ it('should create an instance of SeekResponse', function() {
39
+ // TODO: update the code to test SeekResponse
40
+ expect(instance).to.be.a(NeuralSeek.SeekResponse);
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
+ it('should have the property ufa (base name: "ufa")', function() {
50
+ // TODO: update the code to test the property ufa
51
+ expect(instance).to.have.property('ufa');
52
+ // expect(instance.ufa).to.be(expectedValueLiteral);
53
+ });
54
+
55
+ it('should have the property answerId (base name: "answerId")', function() {
56
+ // TODO: update the code to test the property answerId
57
+ expect(instance).to.have.property('answerId');
58
+ // expect(instance.answerId).to.be(expectedValueLiteral);
59
+ });
60
+
61
+ it('should have the property thumbs (base name: "thumbs")', function() {
62
+ // TODO: update the code to test the property thumbs
63
+ expect(instance).to.have.property('thumbs');
64
+ // expect(instance.thumbs).to.be(expectedValueLiteral);
65
+ });
66
+
67
+ it('should have the property thumbsSVG (base name: "thumbsSVG")', function() {
68
+ // TODO: update the code to test the property thumbsSVG
69
+ expect(instance).to.have.property('thumbsSVG');
70
+ // expect(instance.thumbsSVG).to.be(expectedValueLiteral);
71
+ });
72
+
73
+ it('should have the property intent (base name: "intent")', function() {
74
+ // TODO: update the code to test the property intent
75
+ expect(instance).to.have.property('intent');
76
+ // expect(instance.intent).to.be(expectedValueLiteral);
77
+ });
78
+
79
+ it('should have the property category (base name: "category")', function() {
80
+ // TODO: update the code to test the property category
81
+ expect(instance).to.have.property('category');
82
+ // expect(instance.category).to.be(expectedValueLiteral);
83
+ });
84
+
85
+ it('should have the property categoryName (base name: "categoryName")', function() {
86
+ // TODO: update the code to test the property categoryName
87
+ expect(instance).to.have.property('categoryName');
88
+ // expect(instance.categoryName).to.be(expectedValueLiteral);
89
+ });
90
+
91
+ it('should have the property score (base name: "score")', function() {
92
+ // TODO: update the code to test the property score
93
+ expect(instance).to.have.property('score');
94
+ // expect(instance.score).to.be(expectedValueLiteral);
95
+ });
96
+
97
+ it('should have the property kBscore (base name: "KBscore")', function() {
98
+ // TODO: update the code to test the property kBscore
99
+ expect(instance).to.have.property('kBscore');
100
+ // expect(instance.kBscore).to.be(expectedValueLiteral);
101
+ });
102
+
103
+ it('should have the property semanticAnalysis (base name: "semanticAnalysis")', function() {
104
+ // TODO: update the code to test the property semanticAnalysis
105
+ expect(instance).to.have.property('semanticAnalysis');
106
+ // expect(instance.semanticAnalysis).to.be(expectedValueLiteral);
107
+ });
108
+
109
+ it('should have the property cachedResult (base name: "cachedResult")', function() {
110
+ // TODO: update the code to test the property cachedResult
111
+ expect(instance).to.have.property('cachedResult');
112
+ // expect(instance.cachedResult).to.be(expectedValueLiteral);
113
+ });
114
+
115
+ it('should have the property langCode (base name: "langCode")', function() {
116
+ // TODO: update the code to test the property langCode
117
+ expect(instance).to.have.property('langCode');
118
+ // expect(instance.langCode).to.be(expectedValueLiteral);
119
+ });
120
+
121
+ it('should have the property url (base name: "url")', function() {
122
+ // TODO: update the code to test the property url
123
+ expect(instance).to.have.property('url');
124
+ // expect(instance.url).to.be(expectedValueLiteral);
125
+ });
126
+
127
+ it('should have the property document (base name: "document")', function() {
128
+ // TODO: update the code to test the property document
129
+ expect(instance).to.have.property('document');
130
+ // expect(instance.document).to.be(expectedValueLiteral);
131
+ });
132
+
133
+ it('should have the property time (base name: "time")', function() {
134
+ // TODO: update the code to test the property time
135
+ expect(instance).to.have.property('time');
136
+ // expect(instance.time).to.be(expectedValueLiteral);
137
+ });
138
+
139
+ it('should have the property kbTime (base name: "kbTime")', function() {
140
+ // TODO: update the code to test the property kbTime
141
+ expect(instance).to.have.property('kbTime');
142
+ // expect(instance.kbTime).to.be(expectedValueLiteral);
143
+ });
144
+
145
+ it('should have the property protectTime (base name: "protectTime")', function() {
146
+ // TODO: update the code to test the property protectTime
147
+ expect(instance).to.have.property('protectTime');
148
+ // expect(instance.protectTime).to.be(expectedValueLiteral);
149
+ });
150
+
151
+ it('should have the property categorySelectionTime (base name: "categorySelectionTime")', function() {
152
+ // TODO: update the code to test the property categorySelectionTime
153
+ expect(instance).to.have.property('categorySelectionTime');
154
+ // expect(instance.categorySelectionTime).to.be(expectedValueLiteral);
155
+ });
156
+
157
+ it('should have the property promptInjection (base name: "promptInjection")', function() {
158
+ // TODO: update the code to test the property promptInjection
159
+ expect(instance).to.have.property('promptInjection');
160
+ // expect(instance.promptInjection).to.be(expectedValueLiteral);
161
+ });
162
+
163
+ it('should have the property sourceResultsFormatted (base name: "sourceResultsFormatted")', function() {
164
+ // TODO: update the code to test the property sourceResultsFormatted
165
+ expect(instance).to.have.property('sourceResultsFormatted');
166
+ // expect(instance.sourceResultsFormatted).to.be(expectedValueLiteral);
167
+ });
168
+
169
+ it('should have the property passages (base name: "passages")', function() {
170
+ // TODO: update the code to test the property passages
171
+ expect(instance).to.have.property('passages');
172
+ // expect(instance.passages).to.be(expectedValueLiteral);
173
+ });
174
+
175
+ it('should have the property kbCoverage (base name: "kbCoverage")', function() {
176
+ // TODO: update the code to test the property kbCoverage
177
+ expect(instance).to.have.property('kbCoverage');
178
+ // expect(instance.kbCoverage).to.be(expectedValueLiteral);
179
+ });
180
+
181
+ it('should have the property sentiment (base name: "sentiment")', function() {
182
+ // TODO: update the code to test the property sentiment
183
+ expect(instance).to.have.property('sentiment');
184
+ // expect(instance.sentiment).to.be(expectedValueLiteral);
185
+ });
186
+
187
+ it('should have the property semanticScore (base name: "semanticScore")', function() {
188
+ // TODO: update the code to test the property semanticScore
189
+ expect(instance).to.have.property('semanticScore');
190
+ // expect(instance.semanticScore).to.be(expectedValueLiteral);
191
+ });
192
+
193
+ it('should have the property variables (base name: "variables")', function() {
194
+ // TODO: update the code to test the property variables
195
+ expect(instance).to.have.property('variables');
196
+ // expect(instance.variables).to.be(expectedValueLiteral);
197
+ });
198
+
199
+ it('should have the property variablesExpanded (base name: "variablesExpanded")', function() {
200
+ // TODO: update the code to test the property variablesExpanded
201
+ expect(instance).to.have.property('variablesExpanded');
202
+ // expect(instance.variablesExpanded).to.be(expectedValueLiteral);
203
+ });
204
+
205
+ });
206
+ });
207
+
208
+ }));
@@ -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('SeekResponsePassages', function() {
34
+ beforeEach(function() {
35
+ instance = new NeuralSeek.SeekResponsePassages();
36
+ });
37
+
38
+ it('should create an instance of SeekResponsePassages', function() {
39
+ // TODO: update the code to test SeekResponsePassages
40
+ expect(instance).to.be.a(NeuralSeek.SeekResponsePassages);
41
+ });
42
+
43
+ it('should have the property passage (base name: "passage")', function() {
44
+ // TODO: update the code to test the property passage
45
+ expect(instance).to.have.property('passage');
46
+ // expect(instance.passage).to.be(expectedValueLiteral);
47
+ });
48
+
49
+ it('should have the property id (base name: "id")', function() {
50
+ // TODO: update the code to test the property id
51
+ expect(instance).to.have.property('id');
52
+ // expect(instance.id).to.be(expectedValueLiteral);
53
+ });
54
+
55
+ it('should have the property score (base name: "score")', function() {
56
+ // TODO: update the code to test the property score
57
+ expect(instance).to.have.property('score');
58
+ // expect(instance.score).to.be(expectedValueLiteral);
59
+ });
60
+
61
+ it('should have the property url (base name: "url")', function() {
62
+ // TODO: update the code to test the property url
63
+ expect(instance).to.have.property('url');
64
+ // expect(instance.url).to.be(expectedValueLiteral);
65
+ });
66
+
67
+ it('should have the property document (base name: "document")', function() {
68
+ // TODO: update the code to test the property document
69
+ expect(instance).to.have.property('document');
70
+ // expect(instance.document).to.be(expectedValueLiteral);
71
+ });
72
+
73
+ it('should have the property train (base name: "train")', function() {
74
+ // TODO: update the code to test the property train
75
+ expect(instance).to.have.property('train');
76
+ // expect(instance.train).to.be(expectedValueLiteral);
77
+ });
78
+
79
+ });
80
+ });
81
+
82
+ }));