vsrinivas commited on
Commit
0f8a652
·
verified ·
1 Parent(s): e0417f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -138,9 +138,10 @@ def summarize(meeting_texts):
138
  model="tiiuae/falcon-180b-chat",
139
  messages=[
140
  {"role": "system", "content": f"""You are an expereiced Secretary who can summarize meeting discussions into minutes of meeting.
141
- Summarize the meetings discussions provided as Speakerwise conversation.
142
- Strictly consider only the context given in user content {meeting_texts} for summarization.
143
- Ensure to mention the title as 'Minutes of Meeting held on {meeting_date_time} and present the summary with better viewing format and title in bold letters"""},
 
144
  {"role": "user", "content": meeting_texts},
145
  ],
146
  stream=True,
 
138
  model="tiiuae/falcon-180b-chat",
139
  messages=[
140
  {"role": "system", "content": f"""You are an expereiced Secretary who can summarize meeting discussions into minutes of meeting.
141
+ Summarize the meeting discussions provided in json format as Speakerwise conversation.
142
+ Strictly consider ONLY the context given in user content for summarization. Do not generalize the summary with irrelevant content.
143
+ Ensure to mention the title as 'Minutes of Meeting held on {meeting_date_time} and
144
+ present the summary with better viewing format and title in bold letters"""},
145
  {"role": "user", "content": meeting_texts},
146
  ],
147
  stream=True,