Clement Vachet commited on
Commit
615bcf7
·
1 Parent(s): 199267b

Add section on local execution

Browse files
Files changed (1) hide show
  1. README.md +14 -2
README.md CHANGED
@@ -29,8 +29,15 @@ pinned: true
29
  - LangChain conversational retrieval chain
30
 
31
 
 
 
 
 
 
 
 
32
  **Description:**
33
- - This AI assistant, using Langchain and open-source LLMs, performs retrieval-augmented generation (RAG) from your PDF documents. The user interface explicitely shows multiple steps to help understand the RAG workflow. This chatbot takes past questions into account when generating answers (via conversational memory), and includes document references for clarity purposes. It leverages small LLM models to run directly on CPU hardware.
34
 
35
 
36
  **Available open-source LLMs:**
@@ -42,5 +49,10 @@ pinned: true
42
  - HuggingFace zephyr and SmolLM series
43
 
44
 
45
- You can try out the deployed [Hugging Face Space](https://huggingface.co/spaces/cvachet/pdf-chatbot)!
 
 
 
 
 
46
 
 
29
  - LangChain conversational retrieval chain
30
 
31
 
32
+ You can try out the deployed [Hugging Face Space](https://huggingface.co/spaces/cvachet/pdf-chatbot)!
33
+
34
+
35
+ ----
36
+
37
+ ### Overview
38
+
39
  **Description:**
40
+ This AI assistant, using Langchain and open-source LLMs, performs retrieval-augmented generation (RAG) from your PDF documents. The user interface explicitely shows multiple steps to help understand the RAG workflow. This chatbot takes past questions into account when generating answers (via conversational memory), and includes document references for clarity purposes. It leverages small LLM models to run directly on CPU hardware.
41
 
42
 
43
  **Available open-source LLMs:**
 
49
  - HuggingFace zephyr and SmolLM series
50
 
51
 
52
+ ### Local execution
53
+
54
+ Command line for execution:
55
+ > python3 app.py
56
+
57
+ The Gradio web application should now be accessible at http://localhost:7860
58