Home Backend Development Python Tutorial Enhance Your RAG Application With Web Searching Capability!

Enhance Your RAG Application With Web Searching Capability!

Sep 10, 2024 am 06:00 AM

Enhance Your RAG Application With Web Searching Capability!

Introduction

When building fun projects with Retrieval-Augmented Generation (RAG) applications, we often face limitations like browsing restrictions, making it hard to get the latest information or current data, like weather updates (i hope something more funny). To solve this, we can equip our RAG application with tools to search the internet. Let’s dive in!

 Our Tool-bench

  • LangChain (Framework for building applications with large language models)
  • SearXNG (free metasearch engine)
  • CPython (a C language wrapper :> )
  • Docker (a man with cool bread)

Setup

First we start with the SearXNG installation.

1 -) Get SearXNG-docker

git clone https://github.com/searxng/searxng-docker.git

2 -) Edit the .env file to set the hostname and an email

3 -) Generate the secret key

1

2

3

4

5

6

7

8

9

10

11

12

<Linux>

 

sed -i "s|ultrasecretkey|$(openssl rand -hex 32)|g" searxng/settings.yml

 

<MacOS>

sed -i"" -e "s|ultrasecretkey|$(openssl rand -hex 32)|g" searxng/settings.yml

 

<Windows>

$randomBytes = New-Object byte[] 32

(New-Object Security.Cryptography.RNGCryptoServiceProvider).GetBytes($randomBytes)

$secretKey = -join ($randomBytes | ForEach-Object { "{0:x2}" -f $_ })

(Get-Content searxng/settings.yml) -replace 'ultrasecretkey', $secretKey | Set-Content searxng/settings.yml

Copy after login

4 -) Update the searxng/settings.yml to enable available search formats and disable the limiter for our LangChain instance:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

use_default_settings: true

server:

  # base_url is defined in the SEARXNG_BASE_URL environment variable, see .env and docker-compose.yml

  secret_key: "<secret-key>"  # change this!

  limiter: false

  image_proxy: true

ui:

  static_use_hash: true

redis:

  url: redis://redis:6379/0

 

search:

    formats:

        - html

        - json

Copy after login

5-) Run SearXNG Instance

docker compose up

Check the SearXNG deployment in Docker. If everything looks good, you’re ready to continue.

 Demo Application

1 -) Create a virtual environment & activate

1

2

python3 -m venv .venv

source .venv/bin/activate

Copy after login

2 -) Install Langchain

1

pip install langchain langchain-community

Copy after login

3 -) Create main.py

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

## Simple Get Results

from langchain_community.utilities import SearxSearchWrapper

import pprint

 

s = SearxSearchWrapper(searx_host="http://localhost:8080",)

result = s.results("What is RAG?", num_results=10, engines=["google"])

pprint.pprint(result)

 

## Github Tool

 

from langchain_community.tools.searx_search.tool import SearxSearchResults

 

wrapper = SearxSearchWrapper(searx_host="**")

github_tool = SearxSearchResults(name="Github", wrapper=wrapper,

                            kwargs = {

                                "engines": ["github"],

                                })

Copy after login

And there you have it! Your RAG application now has search capabilities. This guide doesn’t introduce anything new but aims to bring together the steps for adding web searching functionality to your RAG application. I hope it helps!

The above is the detailed content of Enhance Your RAG Application With Web Searching Capability!. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? Apr 02, 2025 am 07:15 AM

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

How to solve permission issues when using python --version command in Linux terminal? How to solve permission issues when using python --version command in Linux terminal? Apr 02, 2025 am 06:36 AM

Using python in Linux terminal...

How to teach computer novice programming basics in project and problem-driven methods within 10 hours? How to teach computer novice programming basics in project and problem-driven methods within 10 hours? Apr 02, 2025 am 07:18 AM

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How to get news data bypassing Investing.com's anti-crawler mechanism? How to get news data bypassing Investing.com's anti-crawler mechanism? Apr 02, 2025 am 07:03 AM

Understanding the anti-crawling strategy of Investing.com Many people often try to crawl news data from Investing.com (https://cn.investing.com/news/latest-news)...

Python 3.6 loading pickle file error ModuleNotFoundError: What should I do if I load pickle file '__builtin__'? Python 3.6 loading pickle file error ModuleNotFoundError: What should I do if I load pickle file '__builtin__'? Apr 02, 2025 am 06:27 AM

Loading pickle file in Python 3.6 environment error: ModuleNotFoundError:Nomodulenamed...

What is the reason why pipeline files cannot be written when using Scapy crawler? What is the reason why pipeline files cannot be written when using Scapy crawler? Apr 02, 2025 am 06:45 AM

Discussion on the reasons why pipeline files cannot be written when using Scapy crawlers When learning and using Scapy crawlers for persistent data storage, you may encounter pipeline files...

See all articles