Skip to content

Commit beeef26

Browse files
authored
FlowiseAI: Fix dependencies (#3427)
* Fix dependencies * Fix missing documentation link
1 parent 008af3c commit beeef26

File tree

2 files changed

+43
-34
lines changed

2 files changed

+43
-34
lines changed
Lines changed: 38 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,39 @@
11
{
2-
"name": "FlowiseAI",
3-
"slug": "flowiseai",
4-
"categories": [
5-
20
6-
],
7-
"date_created": "2024-05-02",
8-
"type": "ct",
9-
"updateable": true,
10-
"privileged": false,
11-
"interface_port": 3000,
12-
"documentation": null,
13-
"website": "https://flowiseai.com/",
14-
"logo": "https://flowiseai.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo-color-high.e60de2f8.png&w=256&q=75",
15-
"description": "FlowiseAI is an open source low-code tool for developers to build customized LLM orchestration flow & AI agents",
16-
"install_methods": [
17-
{
18-
"type": "default",
19-
"script": "ct/flowiseai.sh",
20-
"resources": {
21-
"cpu": 4,
22-
"ram": 4096,
23-
"hdd": 10,
24-
"os": "debian",
25-
"version": "12"
26-
}
27-
}
28-
],
29-
"default_credentials": {
30-
"username": null,
31-
"password": null
32-
},
33-
"notes": []
34-
}
2+
"name": "FlowiseAI",
3+
"slug": "flowiseai",
4+
"categories": [
5+
20
6+
],
7+
"date_created": "2024-05-02",
8+
"type": "ct",
9+
"updateable": true,
10+
"privileged": false,
11+
"interface_port": 3000,
12+
"documentation": "https://docs.flowiseai.com/",
13+
"website": "https://flowiseai.com/",
14+
"logo": "https://flowiseai.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo-color-high.e60de2f8.png&w=256&q=75",
15+
"description": "FlowiseAI is an open source low-code tool for developers to build customized LLM orchestration flow & AI agents",
16+
"install_methods": [
17+
{
18+
"type": "default",
19+
"script": "ct/flowiseai.sh",
20+
"resources": {
21+
"cpu": 4,
22+
"ram": 4096,
23+
"hdd": 10,
24+
"os": "debian",
25+
"version": "12"
26+
}
27+
}
28+
],
29+
"default_credentials": {
30+
"username": null,
31+
"password": null
32+
},
33+
"notes": [
34+
{
35+
"text": "Application takes long time to install. Please be patient!",
36+
"type": "warning"
37+
}
38+
]
39+
}

install/flowiseai-install.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ $STD apt-get install -y nodejs
2626
msg_ok "Installed Node.js"
2727

2828
msg_info "Installing FlowiseAI (Patience)"
29-
$STD npm install -g flowise
29+
$STD npm install -g flowise \
30+
@opentelemetry/exporter-trace-otlp-grpc \
31+
@opentelemetry/exporter-trace-otlp-proto \
32+
@opentelemetry/sdk-trace-node \
33+
langchainhub
3034
mkdir -p /opt/flowiseai
3135
wget -q https://raw.githubusercontent.com/FlowiseAI/Flowise/main/packages/server/.env.example -O /opt/flowiseai/.env
3236
msg_ok "Installed FlowiseAI"

0 commit comments

Comments
 (0)