mirror of
https://github.com/LibreChat-AI/librechat.ai.git
synced 2026-03-27 10:48:32 +07:00
* feat: Introduce web search functionality in configuration v1.2.6 - Added `webSearch` configuration to manage web search features, including search providers, scrapers, and rerankers. - Implemented a toggle for `webSearch` in the interface configuration to control visibility in the chat interface. - Updated agents configuration to include `web_search` capability, enabling web search for agents by default. - Created detailed documentation for web search configuration and usage, including API key setup and component descriptions. * feat: Add web search feature documentation and update configuration - Introduced a new section for the web search feature in the documentation, detailing its capabilities and configuration options. - Updated the `_meta.ts` file to include the web search entry. - Enhanced the web search configuration instructions to emphasize the importance of using environment variable names instead of actual API keys in the YAML file. * fix: Correct clip-path attribute to clipPath in RossIndex component * docs: Expand web search feature documentation - Added detailed information about the web search feature, including environment variable customization options. - Included a table of required API keys for various search providers and services. - Emphasized the ability to customize variable names in the `librechat.yaml` configuration file. * docs: Update web search configuration settings - Changed default `scraperTimeout` from 30000ms to 7500ms in the documentation. - Updated `safeSearch` option to reflect new values: 0 (OFF), 1 (MODERATE - default), and 2 (STRICT). - Enhanced descriptions for both settings to clarify their functionality and defaults.
14 lines
935 B
Plaintext
14 lines
935 B
Plaintext
- Added `webSearch` configuration to control web search functionality
|
|
- Configures search providers (Serper, SearXNG), scrapers (Firecrawl, Serper), and rerankers (Jina, Cohere)
|
|
- Allows customization of API keys and endpoints for each service
|
|
- Enables safe search mode by default
|
|
- See [Web Search Configuration](/docs/configuration/librechat_yaml/object_structure/web_search) for details
|
|
|
|
- Added `webSearch` toggle to [Interface Configuration](/docs/configuration/librechat_yaml/object_structure/interface)
|
|
- When set to `false`, disables the web search button in the chat interface
|
|
- Defaults to `true` (web search button is visible)
|
|
|
|
- Added `web_search` capability to [Agents Configuration](/docs/configuration/librechat_yaml/object_structure/agents)
|
|
- Enables web search functionality for agents
|
|
- Defaults to enabled in the default capabilities list
|
|
- Can be disabled by removing from the capabilities array |