Stanislav commited on
Commit
603c2c1
·
1 Parent(s): 11feedc

feat: readme update

Browse files
Files changed (1) hide show
  1. README.md +8 -2
README.md CHANGED
@@ -26,6 +26,8 @@ pinned: true
26
 
27
  **Cocktail RAG Chat** is an intelligent chatbot that recommends cocktail recipes based on the ingredients entered by the user. The project is built using **Retrieval-Augmented Generation (RAG)**, which effectively combines a **local LLM model** with a **vector database** for searching and recommendations.
28
 
 
 
29
  ---
30
 
31
  ## ⚙️ Key Technologies Used:
@@ -166,11 +168,15 @@ chat_nlp_rag/
166
  ```bash
167
  pip install -r requirements.txt
168
 
169
- 4. Run the server:
 
 
 
 
170
  ```bash
171
  uvicorn run_fast_api:app --reload
172
 
173
- 5. Open in your browser:
174
 
175
  http://127.0.0.1:8000
176
 
 
26
 
27
  **Cocktail RAG Chat** is an intelligent chatbot that recommends cocktail recipes based on the ingredients entered by the user. The project is built using **Retrieval-Augmented Generation (RAG)**, which effectively combines a **local LLM model** with a **vector database** for searching and recommendations.
28
 
29
+ ### Fully working deployed model: [RAG Cocktail Chat](https://huggingface.co/spaces/stkrk/langchain_rag_chat)
30
+
31
  ---
32
 
33
  ## ⚙️ Key Technologies Used:
 
168
  ```bash
169
  pip install -r requirements.txt
170
 
171
+ 4. Download the model and save it to the folder "models":
172
+ [Download TinyLlama_Q5](https://huggingface.co/stkrk/tinyllama-gguf/resolve/main/tinyllama-1.1b-chat-v1.0.Q5_K_M.gguf?download=true)
173
+ <br>
174
+ <br>
175
+ 5. Run the server:
176
  ```bash
177
  uvicorn run_fast_api:app --reload
178
 
179
+ 6. Open in your browser:
180
 
181
  http://127.0.0.1:8000
182