Yvann commited on
Commit
40b7212
·
unverified ·
1 Parent(s): 3a4d172

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -6
README.md CHANGED
@@ -8,12 +8,19 @@ To use ChatBot-CSV, simply visit the following link :
8
 
9
  ### [chatbot-csv.com](https://chatbot-csv.com/)
10
 
11
- ## Task List 📝:
12
- - [x] Implementation of CSV agent (enable precises responses on the csv file structure)
13
- - [ ] Load multiples csv files in the chatbot
14
- - [ ] Custom prompt for the chatbot (let the user choose the behavior of the chatbot)
15
- - [ ] Rebuild the site in typescript instead of streamlit
16
- - [ ] add a database and a login for the user to have a permanent chatbot on these csv data
 
 
 
 
 
 
 
17
  ## Running Locally 💻
18
  Follow these steps to set up and run the service locally :
19
 
 
8
 
9
  ### [chatbot-csv.com](https://chatbot-csv.com/)
10
 
11
+ ## Information 📝:
12
+ ChatBot-CSV features a chatbot with memory and a CSV agent. The chatbot is specialized in discussing unique elements within the CSV with the user in a friendly and conversational manner (limited to about 4 rows at a time due to the nature of the ConversationalRetrievalChain). It is more suitable for a use case where a company uses a CSV to feed their chatbot, so it can answer questions from a user seeking information without necessarily knowing the data behind the chatbot. You can modify the prompt template in the code to customize the chatbot's response phrasing for your specific case.
13
+
14
+ Example:
15
+ Q: I'm looking for a restaurant in New York, what do you suggest?
16
+ A: You can try Tower Restaurant, which offers an à la carte menu and has promotions on Tuesdays. You can contact them at 0654589874 for more information.
17
+
18
+ The CSV Agent, on the other hand, executes Python to answer questions about the content and structure of the CSV. It requires precise questions about the data and provides factual answers. It is not limited to a specific number of rows and can analyze the entire file, but it needs clear and accurate instructions. It also doesn't have memory.
19
+
20
+ Example:
21
+ Q: What's the square root of the average age?
22
+ A: '5.449689683556195'
23
+
24
  ## Running Locally 💻
25
  Follow these steps to set up and run the service locally :
26