kobakhit commited on
Commit
0a5f4ba
·
1 Parent(s): 242b8d0

added tags

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 the following transcript\n{}'}]
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
- - What are important keywords in the transcript for SEO?
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(