diff --git a/README.md b/README.md index ce4e815f778..f96ca756e92 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ Download and Install [NodeJS](https://nodejs.org/en/download) >= 18.15.0 ## 🐳 Docker ### Docker Compose + 1. Clone the Flowise project 2. Go to `docker` folder at the root of the project 3. Copy `.env.example` file, paste it into the same location, and rename to `.env` diff --git a/i18n/CONTRIBUTING-ZH.md b/i18n/CONTRIBUTING-ZH.md index 50b84865988..c84f0f3613d 100644 --- a/i18n/CONTRIBUTING-ZH.md +++ b/i18n/CONTRIBUTING-ZH.md @@ -150,7 +150,7 @@ Flowise 支持不同的环境变量来配置您的实例。您可以在 `package | S3_STORAGE_SECRET_ACCESS_KEY | AWS 密钥 (Secret Key) | 字符串 | | | S3_STORAGE_REGION | S3 存储地区 | 字符串 | | | S3_ENDPOINT_URL | S3 端点 URL | 字符串 | | -| S3_FORCE_PATH_STYLE | 将其设置为 true 以强制请求使用路径样式寻址 | Boolean | false | +| S3_FORCE_PATH_STYLE | 将其设置为 true 以强制请求使用路径样式寻址 | Boolean | false | | SHOW_COMMUNITY_NODES | 显示由社区创建的节点 | 布尔值 | | 您也可以在使用 `npx` 时指定环境变量。例如: diff --git a/packages/components/nodes/chatmodels/ChatNemoGuardrails/readme.md b/packages/components/nodes/chatmodels/ChatNemoGuardrails/readme.md index 44d1e5d7f51..88dfdfeb60e 100644 --- a/packages/components/nodes/chatmodels/ChatNemoGuardrails/readme.md +++ b/packages/components/nodes/chatmodels/ChatNemoGuardrails/readme.md @@ -10,9 +10,11 @@ baseUrl ```json { "config_id": "bedrock", - "messages": [{ - "role":"user", - "content":"Hello! What can you do for me?" - }] + "messages": [ + { + "role": "user", + "content": "Hello! What can you do for me?" + } + ] } -``` \ No newline at end of file +``` diff --git a/packages/components/package.json b/packages/components/package.json index 603b777d961..cd01bc7e92b 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -69,6 +69,7 @@ "assemblyai": "^4.2.2", "axios": "1.6.2", "cheerio": "^1.0.0-rc.12", + "couchbase": "4.4.1", "chromadb": "^1.5.11", "cohere-ai": "^7.7.5", "couchbase": "4.4.1", diff --git a/packages/ui/src/views/canvas/index.css b/packages/ui/src/views/canvas/index.css index b7bb04d8f18..e13d875e62f 100644 --- a/packages/ui/src/views/canvas/index.css +++ b/packages/ui/src/views/canvas/index.css @@ -37,11 +37,11 @@ } .chatflow-canvas .react-flow__handle-connecting { - cursor: not-allowed; - background: #db4e4e !important; + cursor: not-allowed; + background: #db4e4e !important; } .chatflow-canvas .react-flow__handle-valid { - cursor: crosshair; - background: #5dba62 !important; -} \ No newline at end of file + cursor: crosshair; + background: #5dba62 !important; +}