andreinigo commited on
Commit
57af125
·
1 Parent(s): 9a55b47

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -178,7 +178,7 @@ def summarize_meeting(filepath):
178
  prompt_request = str(prompt_response)
179
 
180
  # Summarize the text of the meeting transcripts.
181
- messages = [{"role": "system", "content": "Consolidate, and summarize the text of the meeting transcripts. The output format should be markdown in the same language as the user's input. Start with a brief summary of the meeting, continue with bullets outlining the most important points of discussion. Finally, provide a list of action items with a due date from the provided meeting transcript text."}]
182
  messages.append({"role": "user", "content": prompt_request})
183
  response = openai.ChatCompletion.create(
184
  model="gpt-4",
 
178
  prompt_request = str(prompt_response)
179
 
180
  # Summarize the text of the meeting transcripts.
181
+ messages = [{"role": "system", "content": "Consolidate, and summarize the text of the meeting transcripts. The output format should be markdown in the same language as the user's input. Start with a brief summary of the meeting, continue with bullets outlining the most important points of discussion. Finally, provide a table to show the list of action items with 3 columns: Action, Assigned Person, Due Date."}]
182
  messages.append({"role": "user", "content": prompt_request})
183
  response = openai.ChatCompletion.create(
184
  model="gpt-4",