Spaces:
Running
Running
added tags
Browse files
app.py
CHANGED
@@ -104,7 +104,7 @@ if "prompt_request_counter" not in st.session_state:
|
|
104 |
st.session_state["prompt_request_counter"] = 0
|
105 |
|
106 |
initial_prompt = [{"role": "system", "content": "You are helping to analyze and summarize a transcript of a conversation."},
|
107 |
-
{"role": 'user', "content": 'Please summarize briefly
|
108 |
if "messages" not in st.session_state:
|
109 |
st.session_state.messages = initial_prompt
|
110 |
|
@@ -121,7 +121,7 @@ with st.sidebar:
|
|
121 |
|
122 |
Example prompts:
|
123 |
- Which speaker spoke the most?
|
124 |
-
-
|
125 |
''')
|
126 |
|
127 |
api_key_input = st.text_input(
|
|
|
104 |
st.session_state["prompt_request_counter"] = 0
|
105 |
|
106 |
initial_prompt = [{"role": "system", "content": "You are helping to analyze and summarize a transcript of a conversation."},
|
107 |
+
{"role": 'user', "content": 'Please summarize briefly below transcript. Also, inlcude a list of tags with a hash for SEO. \n{}'}]
|
108 |
if "messages" not in st.session_state:
|
109 |
st.session_state.messages = initial_prompt
|
110 |
|
|
|
121 |
|
122 |
Example prompts:
|
123 |
- Which speaker spoke the most?
|
124 |
+
- Give me a list of tags with a hash for SEO based on this transcript?
|
125 |
''')
|
126 |
|
127 |
api_key_input = st.text_input(
|