https://github.com/ilmedova/llama3_chatbot
Chatbot using Llama3 and Streamlit
https://github.com/ilmedova/llama3_chatbot
aichatbot chatbot llama llama3 llamachatbot streamlit
Last synced: 5 months ago
JSON representation
Chatbot using Llama3 and Streamlit
- Host: GitHub
- URL: https://github.com/ilmedova/llama3_chatbot
- Owner: ilmedova
- Created: 2024-05-01T06:30:18.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-14T23:57:08.000Z (about 2 years ago)
- Last Synced: 2025-12-18T11:22:45.360Z (6 months ago)
- Topics: aichatbot, chatbot, llama, llama3, llamachatbot, streamlit
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
This is AI chatbot using Python, Langchain, and LLMs (specifically Llama3 model)
If you want to get more information on Llama models, check out this link: https://llama.meta.com/docs/get-started/
### 1. Requirements
1. Python and anaconda environment
2. You will need 4.7GB of memory to download Llama3 model, so if you don't have enough space on your device work in Google Colab
### 2. Installation
1. Go to project directory and run the following command:
```
pip install -r requirements.txt
```
2. Dowload and install Ollama into your system. You can download it using the following link: https://ollama.com/download
3. After you installed Ollama you can make sure if it is installed correctly by typing the following in your terminal:
```
ollama serve
```
4. After you make sure you installed Ollama correctly, go and run this command in your project directory:
```
ollama pull llama3
```
### 3. Running the app
```
streamlit run app.py
```
### 4. You can also run it using Docker by using the included Dockerfile