Skip to content

Commit

Permalink
fix: update summaries prompts (#96)
Browse files Browse the repository at this point in the history
Should result in less suppositions (e.g. "the conversation appears to be a meeting").
  • Loading branch information
quitrk authored Aug 26, 2024
1 parent b1c28f8 commit 044446b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions skynet/modules/ttt/summaries/prompts/summary.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
summary_conversation_prompt = """
Summarize the following conversation. Start your response with "Response:".
You are an AI assistant that will be provided a conversation transcript. You will extract a summary of that transcript.
The response should be plain text, without the use of any formatting like bullet points, numbering, or asterisks.
Start your response with "Response:".
Text:
{text}
"""

summary_text_prompt = """
Summarize the following text. Start your response with "Response:".
You are an AI assistant that will be provided a text transcript. You will extract a summary of that transcript.
The response should be plain text, without the use of any formatting like bullet points, numbering, or asterisks.
Start your response with "Response:".
Text:
{text}
"""

0 comments on commit 044446b

Please sign in to comment.