Skip to content

Commit

Permalink
Add couchbase vectore store support (FlowiseAI#3093)
Browse files Browse the repository at this point in the history
* Add couchbase vectore store support

* Uncomment couchbase code

* lint fix

---------

Co-authored-by: Henry <hzj94@hotmail.com>
  • Loading branch information
2 people authored and JJK801 committed Oct 26, 2024
1 parent 2ea098f commit d96f34c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion i18n/CONTRIBUTING-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` 时指定环境变量。例如:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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?"
}
]
}
```
```
1 change: 1 addition & 0 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions packages/ui/src/views/canvas/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
cursor: crosshair;
background: #5dba62 !important;
}

0 comments on commit d96f34c

Please sign in to comment.