Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ai_search.md 1.4KB

12345678910111213141516171819202122232425262728293031
  1. ---
  2. sidebar_position: 2
  3. slug: /ai_search
  4. ---
  5. # Search
  6. Conduct an AI search.
  7. ---
  8. 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.
  9. ![](https://raw.githubusercontent.com/infiniflow/ragflow-docs/main/images/ai_search.jpg)
  10. :::tip NOTE
  11. When debugging your chat assistant, you can use AI search as a reference to verify your model settings and retrieval strategy.
  12. :::
  13. ## Prerequisites
  14. - Ensure that you have configured the system's default models on the **Model providers** page.
  15. - Ensure that the intended knowledge bases are properly configured and the intended documents have finished file parsing.
  16. ## Frequently asked questions
  17. ### key difference between an AI search and an AI chat?
  18. 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.