This project is an AI-powered information retrieval assistant that helps users answer questions based on provided context. It supports multiple search bots and languages, allowing for flexible and accurate information retrieval.
- Baidu
- Bing
- Chinese
- English
pip install searchbotfrom searchbot.rag import search
query = "What is the capital of France?"
bot_name = "bing"
lang = "english"
verbose = True
answer = search(query, bot_name=bot_name, lang=lang, verbose=verbose)
print(answer)