@omnia/fx-models 7.8.43-preview → 7.8.45-preview

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/Exposes.d.ts CHANGED
@@ -131,6 +131,7 @@ export * from "./linkstatus";
131
131
  export * from "./statuscodelayout";
132
132
  export * from "./analytics";
133
133
  export * from "./semanticsearch";
134
+ export * from "./aiengine";
134
135
  export * from "./FilePicker";
135
136
  export * from "./FileIdentifier";
136
137
  export * from "./UserAgent";
package/Exposes.js CHANGED
@@ -143,6 +143,7 @@ tslib_1.__exportStar(require("./linkstatus"), exports);
143
143
  tslib_1.__exportStar(require("./statuscodelayout"), exports);
144
144
  tslib_1.__exportStar(require("./analytics"), exports);
145
145
  tslib_1.__exportStar(require("./semanticsearch"), exports);
146
+ tslib_1.__exportStar(require("./aiengine"), exports);
146
147
  //************************************************************************************ */
147
148
  // End of folder exports
148
149
  //************************************************************************************ */
@@ -0,0 +1,4 @@
1
+ export interface AIEngineApiKeyCredential {
2
+ key: string;
3
+ url: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export interface AIEngineRAGSettings {
2
+ llmDeploymentName: string;
3
+ embeddingsDeploymentName: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./AIEngineApiKeyCredential";
2
+ export * from "./AIEngineRAGSettings";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./AIEngineApiKeyCredential"), exports);
5
+ tslib_1.__exportStar(require("./AIEngineRAGSettings"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.8.43-preview",
4
+ "version": "7.8.45-preview",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"