RAG Chatbot with Confluence
1.0.0
헬프 데스크를 사용하면 회사 Confluence 데이터를 사용하여 간소화된 UI를 갖춘 질문 응답 봇을 만들 수 있습니다.
가상 환경을 생성합니다:
python3.10 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
env.template을 복사하고 환경 변수를 채웁니다.
cp .env.template .env
config.py
및 env.template
파일을 확인하세요.
Confluence에서 데이터를 수집하려면 다음을 수행해야 합니다.
env
파일에 삽입합니다.https://yoursite.atlassian.com/wiki/spaces/<space_key>/pages/
<space_name>/spaces/<space_key>/pages/
스트림라이트 앱을 실행하려면 다음을 실행하세요.
cd src
streamlit run streamlit.py
# First replace the evaluation dataset file in the data folder with your topic questions
cd src
python evaluate.py
ipython kernel install --name RAG --user # Add the notebook kernel
jupyter lab
.
├── data/
├── evaluation_dataset.tsv # Questions and answers useful for evaluation
├── docs/ # Documentation files
├── src/ # The main directory for computer demo
├── __init__.py
├── load_db.py # Load data from confluence and creates smart chunks
├── help_desk.py # Instantiates the LLMs, retriever and chain
├── main.py # Run the Chatbot for a simple question
├── streamlit.py # Run the Chatbot in streamlit where you can ask your own questions
├── evaluate.py # Evaluate the RAG model based on questions-answers samples
├── notebooks/ # Interactive code, useful for try and learn
├── config.py
├── .env.template # Environment variables to feed
├── .gitignore
├── LICENSE # MIT License
├── README.md # Where to start
└── requirements.txt # The dependencies
프로세스는 다음과 같습니다.
keep_markdown_format
옵션을 사용하여 마크다운 스타일을 유지할 수 있습니다.help_desk.ipynb
를 참조하세요.