Skip to content

Commit c77e156

Browse files
committed
[Components] vectorshift #16018
Sources - New Pipeline - New Knowledge Base - New Chatbot Actions - Create Pipeline - Run Pipeline - Add Data To Knowledge Base
1 parent f56e964 commit c77e156

File tree

9 files changed

+227
-212
lines changed

9 files changed

+227
-212
lines changed

components/vectorshift/actions/add-data-to-knowledge-base/add-data-to-knowledge-base.mjs

+6-66
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import {
2-
DATA_TYPE_OPTIONS, RESCRAPE_FREQUENCY_OPTIONS,
3-
} from "../../common/constants.mjs";
1+
import { RESCRAPE_FREQUENCY_OPTIONS } from "../../common/constants.mjs";
42
import vectorshift from "../../vectorshift.app.mjs";
53

64
export default {
@@ -17,24 +15,10 @@ export default {
1715
"knowledgeBaseId",
1816
],
1917
},
20-
dataType: {
21-
type: "string",
22-
label: "Data Type",
23-
description: "The type of the data to be added.",
24-
options: DATA_TYPE_OPTIONS,
25-
reloadProps: true,
26-
},
27-
file: {
28-
type: "string",
29-
label: "File Data",
30-
description: "The file to be uploaded, please provide a file from `/tmp`. To upload a file to `/tmp` folder, [See the documentation](https://pipedream.com/docs/code/nodejs/working-with-files/#writing-a-file-to-tmp)",
31-
hidden: true,
32-
},
3318
url: {
3419
type: "string",
3520
label: "URL",
3621
description: "URL to add to the knowledge base",
37-
hidden: true,
3822
},
3923
recursive: {
4024
type: "boolean",
@@ -48,51 +32,13 @@ export default {
4832
description: "The frequency to rescrape the URL",
4933
options: RESCRAPE_FREQUENCY_OPTIONS,
5034
optional: true,
51-
hidden: true,
52-
},
53-
wikipedia: {
54-
type: "string",
55-
label: "Wikipedia",
56-
description: "Wikipedia data to add to the knowledge base",
57-
hidden: true,
5835
},
59-
youtube: {
60-
type: "string",
61-
label: "YouTube",
62-
description: "YouTube data to add to the knowledge base",
63-
hidden: true,
64-
},
65-
arxiv: {
66-
type: "string",
67-
label: "ArXiv",
68-
description: "ArXiv data to add to the knowledge base",
69-
hidden: true,
70-
},
71-
git: {
72-
type: "string",
73-
label: "Git",
74-
description: "Git data to add to the knowledge base",
75-
hidden: true,
76-
},
77-
},
78-
async additionalProps(props) {
79-
if (this.dataType) {
80-
props.url.hidden = true;
81-
props.wikipedia.hidden = true;
82-
props.youtube.hidden = true;
83-
props.arxiv.hidden = true;
84-
props.git.hidden = true;
85-
props[this.dataType].hidden = false;
86-
87-
const isUrl = this.dataType === "url";
88-
props.rescrapeFrequency.hidden = !isUrl;
89-
props.recursive.hidden = !isUrl;
90-
}
91-
return {};
9236
},
9337
async run({ $ }) {
94-
let data = (this.dataType === "url")
95-
? {
38+
const response = await this.vectorshift.addDataToKnowledgeBase({
39+
$,
40+
knowledgeBaseId: this.knowledgeBaseId,
41+
data: {
9642
url_data: {
9743
request: {
9844
url: this.url,
@@ -101,13 +47,7 @@ export default {
10147
},
10248
rescrape_frequency: this.rescrapeFrequency,
10349
},
104-
}
105-
: this[this.dataType];
106-
107-
const response = await this.vectorshift.addDataToKnowledgeBase({
108-
$,
109-
knowledgeBaseId: this.knowledgeBaseId,
110-
data,
50+
},
11151
});
11252

11353
$.export("$summary", `Added ${response.document_ids.length} document(s) to knowledge base ${this.knowledgeBaseId}. Document IDs: ${response.document_ids.join(", ")}`);

components/vectorshift/sources/common/base.mjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default {
1414
methods: {
1515
async emitEvent(maxResults = false) {
1616
const fn = this.getFunction();
17-
const { objects: response } = await fn();
17+
const { objects: response = [] } = await fn();
1818

1919
if (response.length) {
2020
if (maxResults && (response.length > maxResults)) {
@@ -24,9 +24,9 @@ export default {
2424

2525
for (const item of response) {
2626
this.$emit(item, {
27-
id: item.id,
27+
id: item._id,
2828
summary: this.getSummary(item),
29-
ts: Date.parse(item.created || new Date()),
29+
ts: Date.parse(item.createdDate || new Date()),
3030
});
3131
}
3232
},

components/vectorshift/sources/new-chatbot/new-chatbot.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default {
1515
return this.app.listChatbots;
1616
},
1717
getSummary(item) {
18-
return `New Chatbot: ${item.name || "Unnamed"}`;
18+
return `New Chatbot: ${item.name || item._id}`;
1919
},
2020
},
2121
sampleEmit,
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,145 @@
11
export default {
2-
"course_title": "Class title",
3-
"course_subject": "Course subject",
4-
"course_level": "Course level",
5-
"school_id": 16385,
6-
"start_date": "2024-10-21",
7-
"end_date": "2024-10-28",
8-
"recurrence": "weekly",
9-
"payment_frequency": "free",
10-
"id": 153319,
11-
"photo": null,
12-
"payment_fee": "0",
13-
"course_description": "",
14-
"course_full_title": "Class title [Online Lesson]",
15-
"created": "2024-10-17 18:20:13",
16-
"modified": "2024-10-17 18:20:15",
17-
"color": "color1",
18-
"course_started": false,
19-
"course_ended": false,
20-
"course_status": 1,
21-
"num_enrolled_students": 0,
22-
"teachers": "66792",
23-
"classrooms": "39627",
24-
"billing_month_start_date": "2024-10-01",
25-
"billing_month_end_date": "2024-10-01",
26-
"custom_payments": null,
27-
"archived": false,
28-
"awarding_body": "",
29-
"course_code": "",
30-
"book_code": "",
31-
"total_lessons": 2,
32-
"total_lessons_hrs": "02:00",
33-
"skype_meeting_link": "",
34-
"year": null,
35-
"credit_hours": "",
36-
"class_type": "",
37-
"is_ended": null,
38-
"teacher_hourly_fees": null,
39-
"is_booking_class": false,
40-
"subscription_plan_id": null,
41-
"is_stripe_sub_allow": 0,
42-
"created_by": 66114,
43-
"modified_by": 66114,
44-
"exception_dates": null,
45-
"removed_exception_dates": null
2+
"_id": "67ea096700fcfd7de5313ffa",
3+
"access_config": {
4+
"accessContactText": "Please contact the owner to request access",
5+
"accessPermissionText": "You do not have permission to access this chatbot.",
6+
"enablePassword": false,
7+
"enableSSO": false,
8+
"loginButtonText": "Submit",
9+
"loginHeader": "Authenticate to Chatbot",
10+
"loginPasswordText": "Password"
11+
},
12+
"createdDate": "2025-03-31T17:24:39.768Z",
13+
"deployed": true,
14+
"deployment_options": {
15+
"aIDisclaimerText": "Generated by AI. Double check for accuracy",
16+
"aIDisclaimerVariant": "every_message",
17+
"accentColor": "#6366F1",
18+
"accessColor": "#6366F1",
19+
"accountAuthToken": null,
20+
"accountSid": null,
21+
"assistantImageUrl": "https://vectorshift-public.s3.amazonaws.com/android-chrome-512x512.png",
22+
"backgroundColor": "#FFFFFF",
23+
"borderColor": "#1C2536",
24+
"borderRadius": "8px",
25+
"botName": "Assistant",
26+
"botNameColor": "#6366F1",
27+
"bottomBarIconUrl": "",
28+
"bottomBarRedirectUrl": null,
29+
"bottomBarText": null,
30+
"bottomSpacing": "5px",
31+
"chatBubbleUrl": "",
32+
"chatOpen": true,
33+
"chatbotPassword": "",
34+
"chatbotWelcomeTitle": "Vectorshift",
35+
"clearChat": false,
36+
"copilotMaxWidth": "1000px",
37+
"customDomains": [
38+
{
39+
"id": "7c539459-ebf9-4d12-9c62-980bafc493ce",
40+
"value": ""
41+
}
42+
],
43+
"deployed": false,
44+
"disclaimerText": null,
45+
"displayDescription": "Hi, how can I assist you today?",
46+
"displayDescriptionColor": "#656d75",
47+
"displayDescriptionFontSize": "14px",
48+
"displayDescriptionFontWeight": 400,
49+
"displayDescriptionTextAlignment": "center",
50+
"displayImageSize": "80px",
51+
"displayNameColor": "black",
52+
"displayNameFontSize": "20px",
53+
"displayNameFontWeight": 600,
54+
"embedBorderRadius": "large",
55+
"embedPosition": "right",
56+
"errorMessage": null,
57+
"followUpPrompt": "",
58+
"fontSize": "16px",
59+
"fontStyle": "inter",
60+
"headerFont": "inter",
61+
"height": "100%",
62+
"iconUrl": "https://vectorshift-public.s3.amazonaws.com/android-chrome-512x512.png",
63+
"inputFieldPlaceholder": "Write a message",
64+
"inputIconHeight": "28px",
65+
"inputMessageColor": "#EBEEFE",
66+
"inputTextColor": "#000000",
67+
"inputVariant": "single",
68+
"inputboxHeight": "35px",
69+
"integrationID": null,
70+
"launcherBottomSpacing": 20,
71+
"launcherMessage": "",
72+
"launcherSideSpacing": 20,
73+
"launcherSize": 48,
74+
"launcherText": "Chat Launcher",
75+
"launcherVariant": "icon",
76+
"limitDomains": false,
77+
"messageLimitPerConversation": null,
78+
"numberOfRelatedQuestions": 3,
79+
"oAuthToken": null,
80+
"outputMessageColor": "#f1f2f2",
81+
"outputTextColor": "#000000",
82+
"persistenceTimeDuration": "week",
83+
"persistenceTimeQuantity": 1,
84+
"poweredByVectorshift": true,
85+
"promptA": "",
86+
"promptB": "",
87+
"promptC": "",
88+
"promptD": "",
89+
"rbac": false,
90+
"relatedText": "Related",
91+
"responseLoaderIconUrl": "https://vectorshift-public.s3.amazonaws.com/chat-response-loader.svg",
92+
"responseLoaderLabel": "Processing Request",
93+
"saveConversations": false,
94+
"secondaryColor": "#F5F7FF",
95+
"sendBorderRadius": "100px",
96+
"showAIDisclaimer": false,
97+
"showDocumentUpload": false,
98+
"showHeaderLogo": true,
99+
"showLauncherBackgroundColor": true,
100+
"showRemainingMessageInfo": true,
101+
"showSelectedDocuments": true,
102+
"showVoiceinChat": true,
103+
"showWelcomeImage": true,
104+
"slackDeployed": false,
105+
"stopGeneration": true,
106+
"suggestRelatedQuestions": true,
107+
"suggestedMessages": false,
108+
"title": "VectorShift",
109+
"titleColor": "#000000",
110+
"topBarColor": "#EBEEFE",
111+
"topBarPadding": "12px",
112+
"turnOnUserFeedback": true,
113+
"userName": "User",
114+
"userNameColor": "#6366F1",
115+
"variant": "bubbles",
116+
"welcomeDisplayImage": "https://vectorshift-public.s3.amazonaws.com/android-chrome-512x512.png",
117+
"welcomeMessage": null,
118+
"width": "100%"
119+
},
120+
"description": "",
121+
"input": "input_0",
122+
"mainBranch": "67ea096700fcfd7de5313ffa",
123+
"modifiedDate": "2025-03-31T17:24:39.768Z",
124+
"name": "Chatbot Named",
125+
"orgID": "Personal",
126+
"output": "output_0",
127+
"pipeline": {
128+
"branch_id": null,
129+
"object_id": "67ea096700fcfd7de5313ffa",
130+
"object_type": 0,
131+
"state_id": null,
132+
"version": null
133+
},
134+
"show_document_upload": false,
135+
"slack_config": {
136+
"integrationID": null,
137+
"oAuthToken": null,
138+
"slackDeployed": false
139+
},
140+
"twilio_config": {
141+
"accountAuthToken": null,
142+
"accountSid": null
143+
},
144+
"userID": "auth0|67ea096700fcfd7de5313ffa"
46145
}

components/vectorshift/sources/new-knowledge-base/new-knowledge-base.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default {
1515
return this.app.listKnowledgeBases;
1616
},
1717
getSummary(item) {
18-
return `New Knowledge Base: ${item.name}`;
18+
return `New Knowledge Base: ${item.name || item._id}`;
1919
},
2020
},
2121
sampleEmit,

0 commit comments

Comments
 (0)