diff --git a/frontend/public/json/flowiseai.json b/frontend/public/json/flowiseai.json index 0c4dd7ab5..0502d32f1 100644 --- a/frontend/public/json/flowiseai.json +++ b/frontend/public/json/flowiseai.json @@ -1,34 +1,39 @@ { - "name": "FlowiseAI", - "slug": "flowiseai", - "categories": [ - 20 - ], - "date_created": "2024-05-02", - "type": "ct", - "updateable": true, - "privileged": false, - "interface_port": 3000, - "documentation": null, - "website": "https://flowiseai.com/", - "logo": "https://flowiseai.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo-color-high.e60de2f8.png&w=256&q=75", - "description": "FlowiseAI is an open source low-code tool for developers to build customized LLM orchestration flow & AI agents", - "install_methods": [ - { - "type": "default", - "script": "ct/flowiseai.sh", - "resources": { - "cpu": 4, - "ram": 4096, - "hdd": 10, - "os": "debian", - "version": "12" - } - } - ], - "default_credentials": { - "username": null, - "password": null - }, - "notes": [] -} \ No newline at end of file + "name": "FlowiseAI", + "slug": "flowiseai", + "categories": [ + 20 + ], + "date_created": "2024-05-02", + "type": "ct", + "updateable": true, + "privileged": false, + "interface_port": 3000, + "documentation": "https://docs.flowiseai.com/", + "website": "https://flowiseai.com/", + "logo": "https://flowiseai.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo-color-high.e60de2f8.png&w=256&q=75", + "description": "FlowiseAI is an open source low-code tool for developers to build customized LLM orchestration flow & AI agents", + "install_methods": [ + { + "type": "default", + "script": "ct/flowiseai.sh", + "resources": { + "cpu": 4, + "ram": 4096, + "hdd": 10, + "os": "debian", + "version": "12" + } + } + ], + "default_credentials": { + "username": null, + "password": null + }, + "notes": [ + { + "text": "Application takes long time to install. Please be patient!", + "type": "warning" + } + ] +} diff --git a/install/flowiseai-install.sh b/install/flowiseai-install.sh index 666019fd9..86a0dbd6e 100644 --- a/install/flowiseai-install.sh +++ b/install/flowiseai-install.sh @@ -26,7 +26,11 @@ $STD apt-get install -y nodejs msg_ok "Installed Node.js" msg_info "Installing FlowiseAI (Patience)" -$STD npm install -g flowise +$STD npm install -g flowise \ + @opentelemetry/exporter-trace-otlp-grpc \ + @opentelemetry/exporter-trace-otlp-proto \ + @opentelemetry/sdk-trace-node \ + langchainhub mkdir -p /opt/flowiseai wget -q https://raw.githubusercontent.com/FlowiseAI/Flowise/main/packages/server/.env.example -O /opt/flowiseai/.env msg_ok "Installed FlowiseAI"