@digipair/skill-chatbot 0.21.6 → 0.21.8
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.cjs2.js +1 -1
- package/index.esm.js +1 -1
- package/index.esm2.js +2 -2
- package/libs/skill-chatbot/src/lib/skill-chatbot.d.ts +1 -1
- package/package.json +1 -1
package/index.cjs2.js
CHANGED
@@ -43254,9 +43254,9 @@ const history = (params, pinsSettingsList, context)=>new ChatbotService().histor
|
|
43254
43254
|
const find = (params, pinsSettingsList, context)=>new ChatbotService().find(params, pinsSettingsList, context);
|
43255
43255
|
const search = (params, pinsSettingsList, context)=>new ChatbotService().search(params, pinsSettingsList, context);
|
43256
43256
|
const chatbot = (params, pinsSettingsList, context)=>new ChatbotService().chatbot(params, pinsSettingsList, context);
|
43257
|
-
const boost = (params, pinsSettingsList, context)=>new ChatbotService().boost(params, pinsSettingsList, context);
|
43258
43257
|
const getRole = (params, pinsSettingsList, context)=>new ChatbotService().getRole(params, pinsSettingsList, context);
|
43259
43258
|
const setRole = (params, pinsSettingsList, context)=>new ChatbotService().setRole(params, pinsSettingsList, context);
|
43259
|
+
const boost = (params, pinsSettingsList, context)=>new ChatbotService().boost(params, pinsSettingsList, context);
|
43260
43260
|
const answer = (params, pinsSettingsList, context)=>new ChatbotService().answer(params, pinsSettingsList, context);
|
43261
43261
|
|
43262
43262
|
exports.BasePromptTemplate = BasePromptTemplate;
|
package/index.esm.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export { i as answer,
|
1
|
+
export { i as answer, e as boost, b as chatbot, f as find, g as getRole, h as history, s as search, d as setRole } from './index.esm2.js';
|
2
2
|
import '@digipair/engine';
|
package/index.esm2.js
CHANGED
@@ -43252,9 +43252,9 @@ const history = (params, pinsSettingsList, context)=>new ChatbotService().histor
|
|
43252
43252
|
const find = (params, pinsSettingsList, context)=>new ChatbotService().find(params, pinsSettingsList, context);
|
43253
43253
|
const search = (params, pinsSettingsList, context)=>new ChatbotService().search(params, pinsSettingsList, context);
|
43254
43254
|
const chatbot = (params, pinsSettingsList, context)=>new ChatbotService().chatbot(params, pinsSettingsList, context);
|
43255
|
-
const boost = (params, pinsSettingsList, context)=>new ChatbotService().boost(params, pinsSettingsList, context);
|
43256
43255
|
const getRole = (params, pinsSettingsList, context)=>new ChatbotService().getRole(params, pinsSettingsList, context);
|
43257
43256
|
const setRole = (params, pinsSettingsList, context)=>new ChatbotService().setRole(params, pinsSettingsList, context);
|
43257
|
+
const boost = (params, pinsSettingsList, context)=>new ChatbotService().boost(params, pinsSettingsList, context);
|
43258
43258
|
const answer = (params, pinsSettingsList, context)=>new ChatbotService().answer(params, pinsSettingsList, context);
|
43259
43259
|
|
43260
|
-
export { BasePromptTemplate as B, ChatPromptValue as C, PromptTemplate as P, BaseStringPromptTemplate as a, chatbot as b, checkValidTemplate as c,
|
43260
|
+
export { BasePromptTemplate as B, ChatPromptValue as C, PromptTemplate as P, BaseStringPromptTemplate as a, chatbot as b, checkValidTemplate as c, setRole as d, boost as e, find as f, getRole as g, history as h, answer as i, renderTemplate as r, search as s };
|
@@ -9,9 +9,9 @@ export declare const chatbot: (params: any, pinsSettingsList: PinsSettings[], co
|
|
9
9
|
sources: any;
|
10
10
|
logs: any;
|
11
11
|
}>;
|
12
|
-
export declare const boost: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
13
12
|
export declare const getRole: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
14
13
|
export declare const setRole: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<void>;
|
14
|
+
export declare const boost: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
15
15
|
export declare const answer: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<{
|
16
16
|
assistant: any;
|
17
17
|
command: any[];
|