@botpress/cognitive 0.1.7 → 0.1.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.
@@ -1,19 +1,19 @@
1
1
 
2
- > @botpress/cognitive@0.1.7 build /home/runner/work/botpress/botpress/packages/cognitive
2
+ > @botpress/cognitive@0.1.8 build /home/runner/work/botpress/botpress/packages/cognitive
3
3
  > pnpm build:type && pnpm build:neutral && size-limit
4
4
 
5
5
 
6
- > @botpress/cognitive@0.1.7 build:type /home/runner/work/botpress/botpress/packages/cognitive
6
+ > @botpress/cognitive@0.1.8 build:type /home/runner/work/botpress/botpress/packages/cognitive
7
7
  > tsup --tsconfig tsconfig.build.json ./src/index.ts --dts-resolve --dts-only --clean
8
8
 
9
9
  CLI Building entry: ./src/index.ts
10
10
  CLI Using tsconfig: tsconfig.build.json
11
11
  CLI tsup v8.0.2
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 18029ms
14
- DTS dist/index.d.ts 495.17 KB
13
+ DTS ⚡️ Build success in 17458ms
14
+ DTS dist/index.d.ts 495.72 KB
15
15
 
16
- > @botpress/cognitive@0.1.7 build:neutral /home/runner/work/botpress/botpress/packages/cognitive
16
+ > @botpress/cognitive@0.1.8 build:neutral /home/runner/work/botpress/botpress/packages/cognitive
17
17
  > ts-node -T ./build.ts --neutral
18
18
 
19
19
  Done
package/dist/index.d.ts CHANGED
@@ -11711,6 +11711,22 @@ interface ListPluginsResponse {
11711
11711
  * Version of the [Plugin](#schema_plugin)
11712
11712
  */
11713
11713
  version: string;
11714
+ /**
11715
+ * Title of the plugin. This is the name that will be displayed in the UI
11716
+ */
11717
+ title: string;
11718
+ /**
11719
+ * Description of the plugin. This is the description that will be displayed in the UI
11720
+ */
11721
+ description: string;
11722
+ /**
11723
+ * URL of the icon of the plugin. This is the icon that will be displayed in the UI
11724
+ */
11725
+ iconUrl: string;
11726
+ /**
11727
+ * URL of the readme of the plugin. This is the readme that will be displayed in the UI
11728
+ */
11729
+ readmeUrl: string;
11714
11730
  }[];
11715
11731
  meta: {
11716
11732
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/cognitive",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Wrapper around the Botpress Client to call LLMs",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",