@epam/ai-dial-shared 0.47.0-dev.89 → 0.47.0-dev.90

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/index.esm.js CHANGED
@@ -274,6 +274,7 @@ var OverlayRequests;
274
274
  OverlayRequests["updateMessage"] = "UPDATE_MESSAGE";
275
275
  OverlayRequests["setInputContent"] = "SET_INPUT_CONTENT";
276
276
  OverlayRequests["setSystemPrompt"] = "SET_SYSTEM_PROMPT";
277
+ OverlayRequests["setTemperature"] = "SET_TEMPERATURE";
277
278
  OverlayRequests["setOverlayOptions"] = "SET_OVERLAY_OPTIONS";
278
279
  OverlayRequests["getConversations"] = "GET_CONVERSATIONS";
279
280
  OverlayRequests["getSelectedConversations"] = "GET_SELECTED_CONVERSATIONS";
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@epam/ai-dial-shared",
3
3
  "description": "Shared elements that support developing DIAL",
4
4
  "homepage": "https://dialx.ai",
5
- "version": "0.47.0-dev.89",
5
+ "version": "0.47.0-dev.90",
6
6
  "dependencies": {},
7
7
  "type": "module",
8
8
  "bugs": {
@@ -6,6 +6,7 @@ export declare enum OverlayRequests {
6
6
  updateMessage = "UPDATE_MESSAGE",
7
7
  setInputContent = "SET_INPUT_CONTENT",
8
8
  setSystemPrompt = "SET_SYSTEM_PROMPT",
9
+ setTemperature = "SET_TEMPERATURE",
9
10
  setOverlayOptions = "SET_OVERLAY_OPTIONS",
10
11
  getConversations = "GET_CONVERSATIONS",
11
12
  getSelectedConversations = "GET_SELECTED_CONVERSATIONS",
@@ -16,6 +16,9 @@ export interface SetInputContentRequest {
16
16
  export interface SetSystemPromptRequest {
17
17
  systemPrompt: string;
18
18
  }
19
+ export interface SetTemperatureRequest {
20
+ temperature: number;
21
+ }
19
22
  export interface CreateConversationRequest {
20
23
  parentPath?: string | null;
21
24
  local?: boolean | null;
@@ -3,6 +3,7 @@ import { LatestExportConversationsFormat } from '../import-export';
3
3
  import { OverlayConversation } from './conversation';
4
4
  export type SendMessageResponse = void;
5
5
  export type SetSystemPromptResponse = void;
6
+ export type SetTemperatureResponse = void;
6
7
  export interface GetMessagesResponse {
7
8
  messages: Message[];
8
9
  }