@digipair/skill-llm 0.35.0 → 0.36.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.
- package/api_chain.cjs.js +1 -0
- package/api_chain.esm.js +1 -1
- package/chat.cjs.js +43 -13
- package/chat.esm.js +44 -14
- package/few_shot.cjs.js +1 -0
- package/index.cjs.js +1 -0
- package/index.cjs2.js +27611 -47339
- package/index.esm.js +1 -1
- package/index.esm2.js +23524 -15784
- package/package.json +1 -1
- package/sequential_chain.cjs.js +1 -0
- package/sequential_chain.esm.js +1 -1
- package/vector_db_qa.cjs.js +1 -0
- package/vector_db_qa.esm.js +1 -1
- package/libs/engine/src/index.d.ts +0 -2
- package/libs/engine/src/lib/alias.interface.d.ts +0 -9
- package/libs/engine/src/lib/engine.d.ts +0 -10
- package/libs/engine/src/lib/pins-settings.interface.d.ts +0 -15
package/package.json
CHANGED
package/sequential_chain.cjs.js
CHANGED
package/sequential_chain.esm.js
CHANGED
package/vector_db_qa.cjs.js
CHANGED
package/vector_db_qa.esm.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { P as PromptTemplate, L as LLMChain,
|
1
|
+
import { P as PromptTemplate, L as LLMChain, h as StuffDocumentsChain, g as BaseChain } from './index.esm2.js';
|
2
2
|
import { C as ChatPromptTemplate, S as SystemMessagePromptTemplate, H as HumanMessagePromptTemplate } from './chat.esm.js';
|
3
3
|
|
4
4
|
/**
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import { PinsSettings } from './pins-settings.interface';
|
2
|
-
type CONFIG_KEY = 'BASE_URL' | 'LIBRARIES' | 'ALIAS';
|
3
|
-
export declare const config: {
|
4
|
-
set: (key: CONFIG_KEY, value: any) => void;
|
5
|
-
};
|
6
|
-
export declare const applyTemplate: (value: any, context: any) => any;
|
7
|
-
export declare const executePinsList: (pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
8
|
-
export declare const generateElementFromPins: (pinsSettings: PinsSettings, parent: Element, context: any) => Promise<Element | void>;
|
9
|
-
export declare const preparePinsSettings: (settings: PinsSettings, context: any) => Promise<PinsSettings>;
|
10
|
-
export {};
|
@@ -1,15 +0,0 @@
|
|
1
|
-
export interface PinsSettings {
|
2
|
-
library: string;
|
3
|
-
element: string;
|
4
|
-
properties?: {
|
5
|
-
[key: string]: any;
|
6
|
-
};
|
7
|
-
conditions?: {
|
8
|
-
if?: boolean;
|
9
|
-
each?: any[];
|
10
|
-
};
|
11
|
-
pins?: PinsSettings[];
|
12
|
-
events?: {
|
13
|
-
[key: string]: PinsSettings[];
|
14
|
-
};
|
15
|
-
}
|