dodeeric / langchain-ai-assistant-with-hybrid-rag

This is a LLM chatbot coded with LangChain. The web interface is coded with Streamlit. It implements a hybrid RAG (keyword and semantic search) and chat memory.
https://bmae-ragai-webapp.azurewebsites.net
GNU General Public License v3.0
8 stars 1 forks source link

Your system has an unsupported version of sqlite3. Chroma requires sqlite3 >= 3.35.0. #31

Closed dodeeric closed 1 month ago

dodeeric commented 1 month ago

/mount/src/langchain-ai-assistant-with-hybrid-rag/modules/utils_v1.py:13 in

10 import shutil 11 from langchain_community.document_loaders import JSONLoader, PyPDFLoade 12 from langchain_openai import OpenAIEmbeddings ❱ 13 from langchain_chroma import Chroma 14 15 from config.config import * --- 76 │ │ │ __import__("pysqlite3") 77 │ │ │ sys.modules["sqlite3"] = sys.modules.pop("pysqlite3") 78 │ │ else: ❱ 79 │ │ │ raise RuntimeError( 80 │ │ │ │ "\033[91mYour system has an unsupported version of sql 81 │ │ │ │ │ requires sqlite3 >= 3.35.0.\033[0m\n" 82 │ │ │ │ "\033[94mPlease visit \ ──────────────────────────────────────────────────────────────────────────────── RuntimeError: Your system has an unsupported version of sqlite3. Chroma requires sqlite3 >= 3.35.0. Please visit https://docs.trychroma.com/troubleshooting#sqlite to learn how to upgrade.