Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mamei16/llm_web_search
An extension for oobabooga/text-generation-webui that enables the LLM to search the web using DuckDuckGo
https://github.com/mamei16/llm_web_search
chatgpt duckduckgo faiss gpt langchain llm llms oobabooga rag text-generation-webui
Last synced: 30 days ago
JSON representation
An extension for oobabooga/text-generation-webui that enables the LLM to search the web using DuckDuckGo
- Host: GitHub
- URL: https://github.com/mamei16/llm_web_search
- Owner: mamei16
- License: agpl-3.0
- Created: 2023-11-25T19:51:25.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-12-18T17:11:41.000Z (11 months ago)
- Last Synced: 2023-12-19T06:40:51.904Z (11 months ago)
- Topics: chatgpt, duckduckgo, faiss, gpt, langchain, llm, llms, oobabooga, rag, text-generation-webui
- Language: Python
- Homepage:
- Size: 78.1 KB
- Stars: 14
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ChatGPT-repositories - LLM_Web_search - An extension for oobabooga/text-generation-webui that enables the LLM to search the web using DuckDuckGo (Browser-extensions)
README
# Give your local LLM the ability to search the web!
![unit tests](https://github.com/mamei16/LLM_Web_search/actions/workflows/unit_tests.yml/badge.svg?branch=main)This project gives local LLMs the ability to search the web by outputting a specific
command. Once the command has been found in the model output using a regular expression,
[duckduckgo-search](https://pypi.org/project/duckduckgo-search/)
is used to search the web and return a number of result pages. Finally, an
ensemble of LangChain's [Contextual compression](https://python.langchain.com/docs/modules/data_connection/retrievers/contextual_compression/) and
[Okapi BM25](https://en.wikipedia.org/wiki/Okapi_BM25) (Or alternatively, [SPLADE](https://github.com/naver/splade))
is used to extract the relevant parts (if any) of each web page in the search results
and the results are appended to the model's output.
![llm_websearch](https://github.com/mamei16/LLM_Web_search/assets/25900898/f9d2d83c-e3cf-4f69-91c2-e9c3fe0b7d89)* **[Table of Contents](#table-of-contents)**
* [Installation](#installation)
* [Usage](#usage)
+ [Using a custom regular expression](#using-a-custom-regular-expression)
+ [Reading web pages](#reading-web-pages)
* [Search backends](#search-backends)
+ [DuckDuckGo](#duckduckgo)
+ [SearXNG](#searxng)
+ [Search parameters](#search-parameters)
* [Keyword retrievers](#keyword-retrievers)
+ [Okapi BM25](#okapi-bm25)
+ [SPLADE](#splade)
* [Chunking Methods](#chunking-methods)
+ [Character-based Chunking](#character-based-chunking)
+ [Semantic Chunking](#semantic-chunking)
* [Recommended models](#recommended-models)## Installation
1. Go to the "Session" tab of the web UI and use "Install or update an extension"
to download the latest code for this extension.
2. To install the extension's depencies you have two options:
1. **The easy way:** Run the appropriate `update_wizard` script inside the text-generation-webui folder
and choose `Install/update extensions requirements`. This installs everything using `pip`,
which means using the unofficial `faiss-cpu` package. Therefore, it is not guaranteed to
work with your system (see [the official disclaimer](https://github.com/facebookresearch/faiss/wiki/Installing-Faiss#why-dont-you-support-installing-via-xxx-)).
2. **The safe way:** Manually update the conda environment in which you installed the dependencies of
[oobabooga's text-generation-webui](https://github.com/oobabooga/text-generation-webui).
Open the subfolder `text-generation-webui/extensions/LLM_Web_search` in a terminal or conda shell.
If you used the one-click install method, run the command
`conda env update -p --file environment.yml`,
where you need to replace `` with the path to the
`/installer_files/env` subfolder within the text-generation-webui folder.
Otherwise, if you made your own environment,
use `conda env update -n --file environment.yml`
(NB: Solving the environment can take a while)
3. Launch the Web UI with:
```python server.py --extension LLM_Web_search```If the installation was successful and the extension was loaded, a new tab with the
title "LLM Web Search" should be visible in the web UI.See https://github.com/oobabooga/text-generation-webui/wiki/07-%E2%80%90-Extensions for more
information about extensions.## Usage
Search queries are extracted from the model's output using a regular expression. This is made easier by prompting the model
to use a fixed search command (see `system_prompts/` for example prompts).
Currently, only a single search query per model chat message is supported.An example workflow of using this extension could be:
1. Load a model
2. Load a matching instruction template
3. Head over to the "LLM Web search" tab
4. Load a custom system message/prompt
5. Ensure that the query part of the command mentioned in the system message
can be matched using the current "Search command regex string"
(see "Using a custom regular expression" below)
6. Pick a hyperparameter generation preset that works well for you.
7. Choose "chat-instruct" or "instruct" mode and start chatting### Using a custom regular expression
The default regular expression is:
```regexp
Search_web\("(.*)"\)
```
Where `Search_web` is the search command and everything between the quotation marks
inside the parentheses will be used as the search query. Every custom regular expression must use a
[capture group](https://www.regular-expressions.info/brackets.html) to extract the search
query. I recommend https://www.debuggex.com/ to try out custom regular expressions. If a regex
fulfills the requirement above, the search query should be matched by "Group 1" in Debuggex.Here is an example of a more flexible, but more complex, regex that works for several
different models:
```regexp
[Ss]earch_web\((?:["'])(.*)(?:["'])\)
```
### Reading web pages
Experimental support exists for extracting the full text content from a webpage. The default regex to use this
functionality is:
```regexp
Open_url\("(.*)"\)
```
**Note**: The full content of a web page is likely to exceed the maximum context length of your average local LLM.
## Search backends### DuckDuckGo
This is the default web search backend.### SearXNG
Rudimentary support exists for SearXNG. To use a local or remote
SearXNG instance instead of DuckDuckGo, simply paste the URL into the
"SearXNG URL" text field of the "LLM Web Search" settings tab. The instance must support
returning results in JSON format.#### Search parameters
To modify the categories, engines, languages etc. that should be used for a
specific query, it must follow the
[SearXNG search syntax](https://docs.searxng.org/user/search-syntax.html). Currently,
automatic redirect and Special Queries are not supported.## Keyword retrievers
### Okapi BM25
This extension comes out of the box with
[Okapi BM25](https://en.wikipedia.org/wiki/Okapi_BM25) enabled, which is widely used and very popuplar
for keyword based document retrieval. It runs on the CPU and,
for the purpose of this extension, it is fast.
### SPLADE
If you don't run the extension in "CPU only" mode and have some VRAM to spare,
you can also select [SPLADE](https://github.com/naver/splade) in the "Advanced settings" section
as an alternative. It has been [shown](https://arxiv.org/pdf/2207.03834.pdf) to outperform BM25 in multiple benchmarks
and uses a technique called "query expansion" to add additional contextually relevant words
to the original query. However, it is slower than BM25. You can read more about it [here](https://www.pinecone.io/learn/splade/).
To use SPLADE, you have to install the additional dependency [qdrant-client](https://github.com/qdrant/qdrant-client).
Simply activate the conda environment of the main web UI and run
`pip install qdrant-client`.
To improve performance, documents are embedded in batches and in parallel. Increasing the
"SPLADE batch size" parameter setting improves performance up to a certain point,
but VRAM usage ramps up quickly with increasing batch size. A batch size of 8 appears
to be a good trade-off, but the default value is 2 to avoid running out of memory on smaller
GPUs.## Chunking Methods
### Character-based Chunking
Naively partitions a website's text into fixed sized chunks without any regard for the text content. This is the default, since it is fast and requires no GPU.
### Semantic Chunking
Tries to partition a website's text into chunks based on semantics. If two consecutive sentences have very different embeddings (based on the cosine distance between their embeddings), a new chunk will be started. How different two consecutive sentences have to be for them to end up in different chunks can be tuned using the ` sentence split threshold` parementer in the UI.
For natural language, this method generally produces much better results than character-based chunking. However, it is noticable slower, even when using the GPU.## Recommended models
If you (like me) have ≤ 12 GB VRAM, I recommend using
[Llama-3.1-8B-instruct](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct) or [gemma-2-9b-it](https://huggingface.co/google/gemma-2-9b-it).