@omnia/fx-models 7.8.109-preview → 7.8.111-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/Constants.d.ts CHANGED
@@ -78,6 +78,7 @@ export declare const Constants: {
78
78
  openai: {
79
79
  dallESettingsKey: string;
80
80
  textCompletionSettingsKey: string;
81
+ deploymentNameSettingKey: string;
81
82
  };
82
83
  };
83
84
  html: {
package/Constants.js CHANGED
@@ -109,6 +109,7 @@ exports.Constants = {
109
109
  openai: {
110
110
  dallESettingsKey: "omnia.openai.dalle.settings",
111
111
  textCompletionSettingsKey: "omnia.openai.textcompletion.settings",
112
+ deploymentNameSettingKey: "omnia.openai.deploymentname.settings",
112
113
  }
113
114
  },
114
115
  html: {
@@ -7,5 +7,8 @@ export interface DallESetting {
7
7
  apiBaseUrl: string;
8
8
  apiVersion: string;
9
9
  }
10
+ export interface DeploymentNameSetting {
11
+ deploymentName: string;
12
+ }
10
13
  export declare const azureTextCompletionVersion: readonly ["2023-03-15-preview", "2022-12-01"];
11
14
  export declare const azureDallEVersion: readonly ["2022-08-03-preview"];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.8.109-preview",
4
+ "version": "7.8.111-preview",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"