diff --git a/docs/guides/dataset/construct_knowledge_graph.md b/docs/guides/dataset/construct_knowledge_graph.md index bde9527b6..b3f7cefd1 100644 --- a/docs/guides/dataset/construct_knowledge_graph.md +++ b/docs/guides/dataset/construct_knowledge_graph.md @@ -1,5 +1,5 @@ --- -sidebar_position: 2 +sidebar_position: 8 slug: /construct_knowledge_graph --- diff --git a/docs/guides/team/join_or_leave_team.md b/docs/guides/team/join_or_leave_team.md index 83a6860f5..a704f7942 100644 --- a/docs/guides/team/join_or_leave_team.md +++ b/docs/guides/team/join_or_leave_team.md @@ -27,7 +27,11 @@ You cannot invite users to a team unless you are its owner. ## Accept or decline team invite -Click on your avatar in the top right corner of the page, then select **Team** in the left-hand panel to access the **Team** page. +1. You will be notified when you receive an invitation to join a team: + +![team_notification](https://raw.githubusercontent.com/infiniflow/ragflow-docs/main/images/team_notification.jpg) + +2. Click on your avatar in the top right corner of the page, then select **Team** in the left-hand panel to access the **Team** page. ![team](https://github.com/user-attachments/assets/0eac2503-26bc-4568-b3f2-bcd84069a07a) diff --git a/docs/references/python_api_reference.md b/docs/references/python_api_reference.md index 6434b506d..f841104e6 100644 --- a/docs/references/python_api_reference.md +++ b/docs/references/python_api_reference.md @@ -879,7 +879,7 @@ chunk.update({"content":"sdfx..."}) ### Retrieve chunks ```python -RAGFlow.retrieve(question:str="", dataset_ids:list[str]=None, document_ids=list[str]=None, page:int=1, page_size:int=30, similarity_threshold:float=0.2, vector_similarity_weight:float=0.3, top_k:int=1024,rerank_id:str=None,keyword:bool=False,higlight:bool=False) -> list[Chunk] +RAGFlow.retrieve(question:str="", dataset_ids:list[str]=None, document_ids=list[str]=None, page:int=1, page_size:int=30, similarity_threshold:float=0.2, vector_similarity_weight:float=0.3, top_k:int=1024,rerank_id:str=None,keyword:bool=False,highlight:bool=False) -> list[Chunk] ``` Retrieves chunks from specified datasets.