|
3 | 3 | import Modules.file_io as file_io
|
4 | 4 | from streamlit_toggle import st_toggle_switch
|
5 | 5 | import Components
|
| 6 | +from typing import Any, Dict, List, Tuple, Union |
6 | 7 | import json
|
7 | 8 |
|
8 | 9 |
|
@@ -47,7 +48,13 @@ def _legacy(enable: bool, legacy, experimental):
|
47 | 48 | return experimental
|
48 | 49 | else:
|
49 | 50 | 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 |
51 | 58 |
|
52 | 59 | def sidebar():
|
53 | 60 | with st.sidebar:
|
@@ -77,41 +84,25 @@ def sidebar():
|
77 | 84 | language_options = ['English', 'Chinese', 'Japanese', 'Korean', 'Spanish', 'French', 'German']
|
78 | 85 | language_index = language_options.index(_set_config(config_file, "LANGUAGE", 'English'))
|
79 | 86 | 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) |
91 | 93 | 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)), |
93 | 95 | help='System message is a pre-defined message used to instruct the assistant at the '
|
94 | 96 | 'beginning of a conversation. iterating and '
|
95 | 97 | 'experimenting with potential improvements can help to generate better outputs.'
|
96 | 98 | 'Make sure to use casual language.',
|
97 | 99 | height=250)
|
98 | 100 | 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) |
112 | 103 |
|
113 | 104 | 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)), |
115 | 106 | help='This is a pre-defined message for total summarization that is used to'
|
116 | 107 | 'instruct the assistant at the beginning of a conversation. ',
|
117 | 108 | height=300)
|
@@ -187,7 +178,7 @@ def sidebar():
|
187 | 178 |
|
188 | 179 | if persona_rec:
|
189 | 180 | set_openai_persona(persona_rec, persona_sum)
|
190 |
| - _set_language(language) |
| 181 | + |
191 | 182 | set_chunk_size(chunk_size)
|
192 | 183 | set_param(param)
|
193 | 184 | set_delay(delay)
|
|
0 commit comments