Doc: Updated sharing behavior in the open-source editions. (#7293)

### What problem does this PR solve?


### Type of change


- [x] Documentation Update
This commit is contained in:
writinwaters 2025-04-25 09:21:33 +08:00 committed by GitHub
parent 97a13ef1ab
commit 6e98cd311c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 61 additions and 10 deletions

View File

@ -101,10 +101,8 @@ RAGFLOW_IMAGE=infiniflow/ragflow:v0.18.0-slim
# The Docker image of the v0.18.0 edition includes built-in embedding models:
# - BAAI/bge-large-zh-v1.5
# - maidalun1020/bce-embedding-base_v1
#
# If you cannot download the RAGFlow Docker image:
#
# - For the `nightly-slim` edition, uncomment either of the following:

View File

@ -12,9 +12,8 @@ Accept an invite to join a team, decline an invite, or leave a team.
Once you join a team, you can do the following:
- Upload documents to the team owner's shared datasets (knowledge bases).
- Update document configurations in the team owner's shared datasets.
- Update the default configurations for the team owner's shared datasets.
- Parse documents in the team owner's shared datasets.
- Use the team owner's shared Agents.
:::tip NOTE
You cannot invite users to a team unless you are its owner.

View File

@ -12,9 +12,8 @@ Invite or remove team members.
By default, each RAGFlow user is assigned a single team named after their name. RAGFlow allows you to invite RAGFlow users to your team. Your team members can help you:
- Upload documents to your shared datasets (knowledge bases).
- Update document configurations in your shared datasets.
- Update the default configurations for your shared datasets.
- Parse documents in your shared datasets.
- Use your shared Agents.
:::tip NOTE
- Your team members are currently *not* allowed to invite users to your team, and only you, the team owner, is permitted to do so.

View File

@ -0,0 +1,23 @@
---
sidebar_position: 3
slug: /share_agent
---
# Share Agent
Share an Agent with your team members.
---
When ready, you may share your Agents with your team members so that they can use them. Please note that your Agents are not shared automatically; you must manually enable sharing by selecting the corresponding **Permissions** radio button:
1. Click the intended Agent to open its editing canvas.
2. Click **Settings** to show the **Agent settings** dialogue.
3. Change **Permissions** from **Only me** to **Team**.
4. Click **Save** to apply your changes.
![share_agent](https://raw.githubusercontent.com/infiniflow/ragflow-docs/main/images/share_agent.jpg)
*When completed, your team members will see your shared Agents like this:*
![shared_agent](https://raw.githubusercontent.com/infiniflow/ragflow-docs/main/images/shared_agent.jpg)

View File

@ -0,0 +1,22 @@
---
sidebar_position: 3
slug: /share_datasets
---
# Share knowledge base
Share a knowledge base with team members.
---
When ready, you may share your knowledge bases with your team members so that they can upload and parse files in them. Please note that your knowledge bases are not shared automatically; you must manually enable sharing by selecting the appropriate **Permissions** radio button:
1. Navigate to the knowledge base's **Configuration** page.
2. Change **Permissions** from **Only me** to **Team**.
3. Click **Save** to apply your changes.
![share_knowledge_base](https://raw.githubusercontent.com/infiniflow/ragflow-docs/main/images/share_knowledge_base.jpg)
*Once completed, your team members will see your shared knowledge bases like this:*
![shared_knowledge_base](https://raw.githubusercontent.com/infiniflow/ragflow-docs/main/images/shared_knowledge_base.jpg)

View File

@ -0,0 +1,8 @@
---
sidebar_position: 3
slug: /share_model
---
# Share models
Sharing models is available only on RAGFlow Enterprise!

View File

@ -15,10 +15,12 @@ Released on April 23, 2025.
- MCP server: enables access to RAGFlow's knowledge bases via MCP.
- DeepDoc supports adopting VLM model as a processing pipeline during document layout recognition, enabling in-depth analysis of images in PDFs.
- Agent version control: all updates are continuously logged and can be rolled back to a previous version via export.
- Team collaboration: Agents can be shared with team members.
- OpenAI-compatible APIs: Agents can be called via OpenAI-compatible APIs.
- User registration control: administrators can enable or disable user registration through an environment variable. See `REGISTER_ENABLED` in **/docker/.env**.
- User registration control: administrators can enable or disable user registration through an environment variable.
- Team collaboration: Agents can be shared with team members.
- Agent version control: all updates are continuously logged and can be rolled back to a previous version via export.
![export_agent](https://raw.githubusercontent.com/infiniflow/ragflow-docs/main/images/export_agent_as_json.jpg)
### Improvements