Skip to content

Commit a76a948

Browse files
committed
chore: create prompt.json as separate file for ease of alteration
1 parent 302f7c7 commit a76a948

File tree

3 files changed

+69
-30
lines changed

3 files changed

+69
-30
lines changed

resources/prompt.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[
2+
{
3+
"type": "recursive",
4+
"legacy": true,
5+
"prompt": "Provide a detailed and comprehensive summary of the following content in flawless [LANGUAGE], ensuring all key points are covered. Create a markdown heading (###) that encapsulates the core information of the content. Make sure it is answered in [LANGUAGE].",
6+
"variables": [
7+
{
8+
"name": "[LANGUAGE]"
9+
}
10+
]
11+
},
12+
{
13+
"type": "recursive",
14+
"legacy": false,
15+
"prompt": "Write a detailed and comprehensive explanation of the following in perfect [LANGUAGE] with no grammar issues, ensuring all key points are covered. Create a markdown heading (###) that encapsulates the core information:\n\n{text}\n\nStructured markdown summary with heading (###) in fluent [LANGUAGE]:",
16+
"variables": [
17+
{
18+
"name": "[LANGUAGE]"
19+
}
20+
]
21+
},
22+
{
23+
"type": "final",
24+
"legacy": true,
25+
"prompt": "identify headings in the transcript and summarise them into five headings. Use #### headings in markdown. Under headings, summarise at least 3 key points and then provide detail explanation of the concept based on the following text in the way that can be read fluently, make sense and avoid repetition. Make sure to include all information. Write it in beautiful and structured markdown in perfect [LANGUAGE]. ",
26+
"variables": [
27+
{
28+
"name": "[LANGUAGE]"
29+
}
30+
]
31+
},
32+
{
33+
"type": "final",
34+
"legacy": false,
35+
"prompt": "Write a detailed summary of the following in [LANGUAGE]:\n\n{text}\n\nIdentify and summarise them into five headings. Use #### headings in markdown. Under headings, summarize a list of key points that best encapsulate the core information. Structured markdown summary with headings in perfect [LANGUAGE] (####): ",
36+
"variables": [
37+
{
38+
"name": "[LANGUAGE]"
39+
}
40+
]
41+
}
42+
]

src/Components/sidebar.py

+19-28
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import Modules.file_io as file_io
44
from streamlit_toggle import st_toggle_switch
55
import Components
6+
from typing import Any, Dict, List, Tuple, Union
67
import json
78

89

@@ -47,7 +48,13 @@ def _legacy(enable: bool, legacy, experimental):
4748
return experimental
4849
else:
4950
return legacy
50-
51+
def _extract_prompt(json_data: List[Dict[str,Union[bool, str]]], target_type: str, target_legacy: bool, language: str = "English") -> str | None:
52+
for item in json_data:
53+
if item["type"] == target_type and item["legacy"] == target_legacy:
54+
prompt = item["prompt"]
55+
new_prompt = prompt.replace("[LANGUAGE]", language)
56+
return new_prompt
57+
return None
5158

5259
def sidebar():
5360
with st.sidebar:
@@ -77,41 +84,25 @@ def sidebar():
7784
language_options = ['English', 'Chinese', 'Japanese', 'Korean', 'Spanish', 'French', 'German']
7885
language_index = language_options.index(_set_config(config_file, "LANGUAGE", 'English'))
7986
language = st.selectbox('Language', options=language_options, index=language_index)
80-
default_persona_rec_legacy = 'Provide a detailed and comprehensive summary of the following content in flawless ' \
81-
f'{language}, ensuring all key points are covered. Create a markdown heading (###) that ' \
82-
f'encapsulates the core information of the content. Make sure it is answered in {language}.'
83-
default_persona_rec = f"""Write a detailed and comprehensive explanation of the following in perfect {language} with no grammar issues,
84-
ensuring all key points are covered. Create a markdown heading (###) that encapsulates the core information:""" + \
85-
"""
86-
87-
{text}
88-
89-
""" + \
90-
f"""Structured markdown explanation with heading (###) in perfect {language}: """
87+
_set_language(language)
88+
89+
prompts = file_io.read_json("resources/prompt.json")
90+
91+
persona_rec_legacy = _extract_prompt(prompts, "recursive", True, language)
92+
persona_rec = _extract_prompt(prompts, "recursive", False, language)
9193
persona_rec = st.text_area('Bot Persona Recursive',
92-
value=_set_config(config_file, "OPENAI_PERSONA_REC", _legacy(enable_legacy, default_persona_rec_legacy, default_persona_rec)),
94+
value=_set_config(config_file, "OPENAI_PERSONA_REC", _legacy(enable_legacy, persona_rec_legacy, persona_rec)),
9395
help='System message is a pre-defined message used to instruct the assistant at the '
9496
'beginning of a conversation. iterating and '
9597
'experimenting with potential improvements can help to generate better outputs.'
9698
'Make sure to use casual language.',
9799
height=250)
98100
if enable_final_summary:
99-
default_persona_sum_legacy = 'identify headings in the transcript and summarise them into five ' \
100-
'headings. Use #### headings in markdown. Under headings, summarise at least ' \
101-
'3 key points and then provide detail explanation of the concept based on the ' \
102-
'following text in the way that can be read fluently, make sense and avoid ' \
103-
'repetition. Make sure to include all information. Write it in beautiful and ' \
104-
f'structured markdown in perfect {language}. '
105-
default_persona_sum = f"""Write a detailed summary of the following in {language}:
106-
""" + \
107-
"""
108-
{text}
109-
110-
Identify and summarise them into five headings. Use #### headings in markdown. Under headings, summarize a list of key points that best encapsulate the core information.""" + \
111-
f"""Structured markdown summary with headings in perfect {language} (####): """
101+
persona_sum_legacy = _extract_prompt(prompts, "final", True, language)
102+
persona_sum = _extract_prompt(prompts, "final", False, language)
112103

113104
persona_sum = st.text_area('Bot Persona Total Sum',
114-
value=_set_config(config_file, "OPENAI_PERSONA_SUM", _legacy(enable_legacy, default_persona_sum_legacy, default_persona_sum)),
105+
value=_set_config(config_file, "OPENAI_PERSONA_SUM", _legacy(enable_legacy, persona_sum_legacy, persona_sum)),
115106
help='This is a pre-defined message for total summarization that is used to'
116107
'instruct the assistant at the beginning of a conversation. ',
117108
height=300)
@@ -187,7 +178,7 @@ def sidebar():
187178

188179
if persona_rec:
189180
set_openai_persona(persona_rec, persona_sum)
190-
_set_language(language)
181+
191182
set_chunk_size(chunk_size)
192183
set_param(param)
193184
set_delay(delay)

src/Modules/file_io.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88
import streamlit as st
99

1010

11+
1112
@st.cache_data()
12-
def read_json(file, key: str) -> Any:
13+
def read_json(file, key: str = None) -> Any:
1314
"""Reads a json file and returns the value of a key."""
1415
with open(file, "r") as f:
1516
data = json.load(f)
16-
return data[key]
17+
if key and isinstance(data, dict):
18+
return data[key]
19+
elif key and isinstance(data, list):
20+
return [d[key] for d in data]
21+
else:
22+
return data
1723

1824

1925
@st.cache_data()

0 commit comments

Comments
 (0)