diff --git a/docker/.env b/docker/.env index c1cdb50a7..01e1066ba 100644 --- a/docker/.env +++ b/docker/.env @@ -101,9 +101,7 @@ 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: # diff --git a/docs/guides/team/join_or_leave_team.md b/docs/guides/team/join_or_leave_team.md index a704f7942..42c54c230 100644 --- a/docs/guides/team/join_or_leave_team.md +++ b/docs/guides/team/join_or_leave_team.md @@ -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. diff --git a/docs/guides/team/manage_team_members.md b/docs/guides/team/manage_team_members.md index 2a9b5a4c5..983abfc6e 100644 --- a/docs/guides/team/manage_team_members.md +++ b/docs/guides/team/manage_team_members.md @@ -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. diff --git a/docs/guides/team/share_agents.md b/docs/guides/team/share_agents.md new file mode 100644 index 000000000..e7afaba80 --- /dev/null +++ b/docs/guides/team/share_agents.md @@ -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) \ No newline at end of file diff --git a/docs/guides/team/share_knowledge_bases.md b/docs/guides/team/share_knowledge_bases.md new file mode 100644 index 000000000..404ed168a --- /dev/null +++ b/docs/guides/team/share_knowledge_bases.md @@ -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) \ No newline at end of file diff --git a/docs/guides/team/share_model.md b/docs/guides/team/share_model.md new file mode 100644 index 000000000..6b6a46a3b --- /dev/null +++ b/docs/guides/team/share_model.md @@ -0,0 +1,8 @@ +--- +sidebar_position: 3 +slug: /share_model +--- + +# Share models + +Sharing models is available only on RAGFlow Enterprise! \ No newline at end of file diff --git a/docs/release_notes.md b/docs/release_notes.md index dd1918877..5c3e2270c 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -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