Mbonea commited on
Commit
f7b04a6
·
1 Parent(s): e784238
Files changed (1) hide show
  1. App/Chat/utils/Summarize.py +3 -5
App/Chat/utils/Summarize.py CHANGED
@@ -21,7 +21,7 @@ text_splitter = RecursiveCharacterTextSplitter(
21
 
22
 
23
  map_prompt = """
24
- Write a verbose summary like a masters student of the following:
25
  "{text}"
26
  CONCISE SUMMARY:
27
  """
@@ -29,11 +29,9 @@ CONCISE SUMMARY:
29
 
30
  combine_prompt = """
31
  Write a concise summary of the following text delimited by triple backquotes.
32
- Return your response in a detailed verbose paragraph which covers the text. Make it as insightful to the reader as possible, write like a masters student.
33
-
34
  ```{text}```
35
-
36
- SUMMARY:
37
  """
38
 
39
 
 
21
 
22
 
23
  map_prompt = """
24
+ Write a concise summary of the following:
25
  "{text}"
26
  CONCISE SUMMARY:
27
  """
 
29
 
30
  combine_prompt = """
31
  Write a concise summary of the following text delimited by triple backquotes.
32
+ Return your response in bullet points which covers the key points of the text.
 
33
  ```{text}```
34
+ BULLET POINT SUMMARY:
 
35
  """
36
 
37