mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-08 04:16:03 -05:00
Improve Web Search Intelligence in LLM Responses #1790
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @odefta on GitHub (Aug 15, 2024).
Current Behavior
When web search is enabled and a user asks a specific question, the system performs a literal search of the entire question. For example:
Query: "I don't know how to modify the column type of a materialized view in Oracle 19c from char(5) to varchar2(100)... please help me"
Current search: [entire user query]
This often leads to poor or irrelevant search results, as the search query is too specific and unlikely to match existing web content directly.
Proposed Behavior
Example:
User Query: "I don't know how to modify the column type of a materialized view in Oracle 19c from char(5) to varchar2(100)... please help me"
The LLM would then use the results from this more targeted search to construct a detailed response to the user's specific question.
Benefits
Technical Considerations
This enhancement would significantly improve the practical utility of the web search feature in OpenWebUI, especially for technical and specific queries (where targeted information is crucial).