From 9ba38dcd73fff805a13da61669f5163d28e563ee Mon Sep 17 00:00:00 2001
From: cosark <121065588+cosark@users.noreply.github.com>
Date: Sun, 31 Dec 2023 17:16:53 -0700
Subject: [PATCH 01/30] Added deploy template for RepoCloud.io
Integration with RepoCloud Deploy Template to the Flowise GitHub page, enabling one-click deployment. This addition simplifies the process for users to quickly deploy and scale Flowise using RepoCloud's efficient cloud hosting services.
---
README.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/README.md b/README.md
index 25026237f..a80c53f7c 100644
--- a/README.md
+++ b/README.md
@@ -157,6 +157,10 @@ Flowise support different environment variables to configure your instance. You
[](https://elest.io/open-source/flowiseai)
+### [RepoCloud](https://repocloud.io/details/?app_id=29)
+
+[](https://repocloud.io/details/?app_id=29)
+
### [HuggingFace Spaces](https://docs.flowiseai.com/deployment/hugging-face)
From 467e71ba1f01dcd3ab2b86c79d981987f9667ba2 Mon Sep 17 00:00:00 2001
From: Ofer Mendelevitch
Date: Sun, 31 Dec 2023 18:36:23 -0800
Subject: [PATCH 02/30] added support for MMR
---
.../nodes/chains/VectaraChain/VectaraChain.ts | 38 ++++++++++++++-----
.../nodes/vectorstores/Vectara/Vectara.ts | 31 +++++++++++++--
2 files changed, 56 insertions(+), 13 deletions(-)
diff --git a/packages/components/nodes/chains/VectaraChain/VectaraChain.ts b/packages/components/nodes/chains/VectaraChain/VectaraChain.ts
index 3799d062f..c80b354f7 100644
--- a/packages/components/nodes/chains/VectaraChain/VectaraChain.ts
+++ b/packages/components/nodes/chains/VectaraChain/VectaraChain.ts
@@ -69,22 +69,23 @@ class VectaraChain_Chains implements INode {
options: [
{
label: 'vectara-summary-ext-v1.2.0 (gpt-3.5-turbo)',
- name: 'vectara-summary-ext-v1.2.0'
+ name: 'vectara-summary-ext-v1.2.0',
+ description: 'base summarizer, available to all Vectara users'
},
{
label: 'vectara-experimental-summary-ext-2023-10-23-small (gpt-3.5-turbo)',
name: 'vectara-experimental-summary-ext-2023-10-23-small',
- description: 'In beta, available to both Growth and Scale Vectara users'
+ description: `In beta, available to both Growth and Scale Vectara users`
},
{
label: 'vectara-summary-ext-v1.3.0 (gpt-4.0)',
name: 'vectara-summary-ext-v1.3.0',
- description: 'Only available to paying Scale Vectara users'
+ description: 'Only available to Scale Vectara users'
},
{
label: 'vectara-experimental-summary-ext-2023-10-23-med (gpt-4.0)',
name: 'vectara-experimental-summary-ext-2023-10-23-med',
- description: 'In beta, only available to paying Scale Vectara users'
+ description: `In beta, only available to Scale Vectara users`
}
],
default: 'vectara-summary-ext-v1.2.0'
@@ -228,7 +229,7 @@ class VectaraChain_Chains implements INode {
async run(nodeData: INodeData, input: string): Promise