@onereach/idw-init-account-resources 0.17.0 → 0.17.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/assets/skills/analyze_image.js +24 -0
- package/dist/assets/skills/analyze_image.js.map +1 -0
- package/dist/assets/skills/documentation/analyze-image.pdf +0 -0
- package/package.json +1 -1
- package/src/assets/skills/analyze_image.ts +26 -0
- package/src/assets/skills/documentation/analyze-image.pdf +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
WARN Issue while reading "/builds/onereach/platform/idw/idw-template/.npmrc". Failed to replace env in config: ${OR_NPM_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @onereach/idw-init-account-resources@0.
|
|
3
|
+
> @onereach/idw-init-account-resources@0.17.0 build /builds/onereach/platform/idw/idw-template/packages/level-system/idw-init-account-resources
|
|
4
4
|
> rimraf dist && tsc -b && mkdir dist/assets/skills/documentation && cp -r src/assets/skills/documentation/* dist/assets/skills/documentation
|
|
5
5
|
|
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.analyzeImageSkill = void 0;
|
|
4
|
+
exports.analyzeImageSkill = {
|
|
5
|
+
uid: 'analyze_image',
|
|
6
|
+
forRoles: ['admin', 'user'],
|
|
7
|
+
name: 'Analyze an image',
|
|
8
|
+
description: 'Analyze an image skill allows users to upload images, analyze their content using AI, and generate descriptive or actionable outputs within a conversational platform. It streamlines the interpretation of visual data and integrates insights into chat responses, enhancing automation and user engagement.',
|
|
9
|
+
abbreviation: 'AI',
|
|
10
|
+
number: 30,
|
|
11
|
+
domain: 'General',
|
|
12
|
+
editable: true,
|
|
13
|
+
meta: {
|
|
14
|
+
chatId: 'analyze-image',
|
|
15
|
+
prompt: undefined,
|
|
16
|
+
promptParams: undefined,
|
|
17
|
+
},
|
|
18
|
+
passages: [
|
|
19
|
+
{
|
|
20
|
+
content: 'Analyze an image skill allows users to upload images, analyze their content using AI, and generate descriptive or actionable outputs within a conversational platform. It streamlines the interpretation of visual data and integrates insights into chat responses, enhancing automation and user engagement.',
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=analyze_image.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"analyze_image.js","sourceRoot":"","sources":["../../../src/assets/skills/analyze_image.ts"],"names":[],"mappings":";;;AAGa,QAAA,iBAAiB,GAAoB;IAChD,GAAG,EAAE,eAAe;IACpB,QAAQ,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;IAC3B,IAAI,EAAE,kBAAkB;IAExB,WAAW,EAAE,gTAAgT;IAC7T,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,EAAE;IACV,MAAM,EAAE,SAAS;IACjB,QAAQ,EAAE,IAAI;IAEd,IAAI,EAAE;QACJ,MAAM,EAAE,eAAe;QACvB,MAAM,EAAE,SAAS;QACjB,YAAY,EAAE,SAAS;KACxB;IAED,QAAQ,EAAE;QACR;YACE,OAAO,EAAE,gTAAgT;SAC1T;KACF;CACF,CAAC"}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* eslint-disable max-len */
|
|
2
|
+
import type { SkillDefinition } from '../../types';
|
|
3
|
+
|
|
4
|
+
export const analyzeImageSkill: SkillDefinition = {
|
|
5
|
+
uid: 'analyze_image',
|
|
6
|
+
forRoles: ['admin', 'user'],
|
|
7
|
+
name: 'Analyze an image',
|
|
8
|
+
// description: 'This skill is designed to give Admins full control over the skills available in your IDW. With this feature, Admins can rename, delete, or add new skills, ensuring that your IDW remains relevant and useful for all team members',
|
|
9
|
+
description: 'Analyze an image skill allows users to upload images, analyze their content using AI, and generate descriptive or actionable outputs within a conversational platform. It streamlines the interpretation of visual data and integrates insights into chat responses, enhancing automation and user engagement.',
|
|
10
|
+
abbreviation: 'AI',
|
|
11
|
+
number: 30,
|
|
12
|
+
domain: 'General',
|
|
13
|
+
editable: true,
|
|
14
|
+
|
|
15
|
+
meta: {
|
|
16
|
+
chatId: 'analyze-image',
|
|
17
|
+
prompt: undefined,
|
|
18
|
+
promptParams: undefined,
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
passages: [
|
|
22
|
+
{
|
|
23
|
+
content: 'Analyze an image skill allows users to upload images, analyze their content using AI, and generate descriptive or actionable outputs within a conversational platform. It streamlines the interpretation of visual data and integrates insights into chat responses, enhancing automation and user engagement.',
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
};
|
|
Binary file
|