From 772992812a08533cdbbfaabc6b8ecb21b084e4d4 Mon Sep 17 00:00:00 2001 From: writinwaters <93570324+writinwaters@users.noreply.github.com> Date: Thu, 15 May 2025 18:41:39 +0800 Subject: [PATCH] Docs: Added a guide on AI search (#7674) ### What problem does this PR solve? ### Type of change - [x] Documentation Update --- docs/guides/ai_search.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 docs/guides/ai_search.md diff --git a/docs/guides/ai_search.md b/docs/guides/ai_search.md new file mode 100644 index 000000000..f2db3e41b --- /dev/null +++ b/docs/guides/ai_search.md @@ -0,0 +1,31 @@ +--- +sidebar_position: 2 +slug: /ai_search +--- + +# Search + +Conduct an AI search. + +--- + +An AI search is a single-turn AI conversation using a predefined retrieval strategy (a hybrid search of weighted keyword similarity and weighted vector similarity) and the system's default chat model. It does not involve advanced RAG strategies like knowledge graph, auto-keyword, or auto-question. Retrieved chunks will be listed below the chat model's response. + +![](https://raw.githubusercontent.com/infiniflow/ragflow-docs/main/images/ai_search.jpg) + +:::tip NOTE +When debugging your chat assistant, you can use AI search as a reference to verify your model settings and retrieval strategy. +::: + +## Prerequisites + +- Ensure that you have configured the system's default models on the **Model providers** page. +- Ensure that the intended knowledge bases are properly configured and the intended documents have finished file parsing. + + +## Frequently asked questions + +### key difference between an AI search and an AI chat? + +A chat is a multi-turn AI conversation where you can define your retrieval strategy (a weighted reranking score can be used to replace the weighted vector similarity in a hybrid search) and choose your chat model. In an AI chat, you can configure advanced RAG strategies, such as knowledge graphs, auto-keyword, and auto-question, for your specific case. Retrieved chunks are not displayed along with the answer. +