writinwaters
commited on
Commit
·
2ccd8d5
1
Parent(s):
e763c5a
Added GPUStack (#4649)
Browse files### What problem does this PR solve?
### Type of change
- [x] Documentation Update
docs/references/agent_component_reference/concentrator.mdx
CHANGED
@@ -18,7 +18,7 @@ A **Concentrator** component enhances the current UX design. For a component ori
|
|
18 |
|
19 |
## Examples
|
20 |
|
21 |
-
Explore our general-purpose chatbot agent template, featuring a **Concentrator** component (component ID: **medical**) that relays an execution flow from category 2 of the **Categorize** component to
|
22 |
|
23 |
1. Click the **Agent** tab at the top center of the page to access the **Agent** page.
|
24 |
2. Click **+ Create agent** on the top right of the page to open the **agent template** page.
|
|
|
18 |
|
19 |
## Examples
|
20 |
|
21 |
+
Explore our general-purpose chatbot agent template, featuring a **Concentrator** component (component ID: **medical**) that relays an execution flow from category 2 of the **Categorize** component to two translator components:
|
22 |
|
23 |
1. Click the **Agent** tab at the top center of the page to access the **Agent** page.
|
24 |
2. Click **+ Create agent** on the top right of the page to open the **agent template** page.
|
docs/references/supported_models.mdx
CHANGED
@@ -26,6 +26,7 @@ A complete list of models supported by RAGFlow, which will continue to expand.
|
|
26 |
| Fish Audio | | | | | | :heavy_check_mark: |
|
27 |
| Gemini | :heavy_check_mark: | :heavy_check_mark: | | :heavy_check_mark: | | |
|
28 |
| Google Cloud | :heavy_check_mark: | | | | | |
|
|
|
29 |
| Groq | :heavy_check_mark: | | | | | |
|
30 |
| HuggingFace | :heavy_check_mark: | :heavy_check_mark: | | | | |
|
31 |
| Jina | | :heavy_check_mark: | :heavy_check_mark: | | | |
|
|
|
26 |
| Fish Audio | | | | | | :heavy_check_mark: |
|
27 |
| Gemini | :heavy_check_mark: | :heavy_check_mark: | | :heavy_check_mark: | | |
|
28 |
| Google Cloud | :heavy_check_mark: | | | | | |
|
29 |
+
| GPUStack | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: |
|
30 |
| Groq | :heavy_check_mark: | | | | | |
|
31 |
| HuggingFace | :heavy_check_mark: | :heavy_check_mark: | | | | |
|
32 |
| Jina | | :heavy_check_mark: | :heavy_check_mark: | | | |
|
rag/llm/__init__.py
CHANGED
@@ -13,6 +13,8 @@
|
|
13 |
# See the License for the specific language governing permissions and
|
14 |
# limitations under the License.
|
15 |
#
|
|
|
|
|
16 |
from .embedding_model import (
|
17 |
OllamaEmbed,
|
18 |
LocalAIEmbed,
|
|
|
13 |
# See the License for the specific language governing permissions and
|
14 |
# limitations under the License.
|
15 |
#
|
16 |
+
# AFTER UPDATING THIS FILE, PLEASE ENSURE THAT docs/references/supported_models.mdx IS ALSO UPDATED for consistency!
|
17 |
+
#
|
18 |
from .embedding_model import (
|
19 |
OllamaEmbed,
|
20 |
LocalAIEmbed,
|