bulleted
Browse files
App/Chat/utils/Summarize.py
CHANGED
@@ -21,7 +21,7 @@ text_splitter = RecursiveCharacterTextSplitter(
|
|
21 |
|
22 |
|
23 |
map_prompt = """
|
24 |
-
Write a
|
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
|
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 |
|