black formatting

This commit is contained in:
Steve Androulakis
2024-12-31 12:28:02 -08:00
parent c6ea92bfe5
commit 396b748b7d
3 changed files with 20 additions and 20 deletions

View File

@@ -158,10 +158,6 @@ class EntityOllamaWorkflow:
# Return (context_instructions, prompt) for summarizing the conversation
def prompt_summary_with_history(self) -> tuple[str, str]:
history_string = self.format_history()
context_instructions = (
f"Here is the conversation history between a user and a chatbot: {history_string}"
)
actual_prompt = (
"Please produce a two sentence summary of this conversation."
)
context_instructions = f"Here is the conversation history between a user and a chatbot: {history_string}"
actual_prompt = "Please produce a two sentence summary of this conversation."
return (context_instructions, actual_prompt)