2024-09-11 12:06:35 -04:00
|
|
|
"""
|
|
|
|
Copyright 2024, Zep Software, Inc.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import json
|
|
|
|
from typing import Any, Protocol, TypedDict
|
|
|
|
|
|
|
|
from .models import Message, PromptFunction, PromptVersion
|
|
|
|
|
|
|
|
|
|
|
|
class Prompt(Protocol):
|
|
|
|
summarize_pair: PromptVersion
|
2024-11-13 20:13:06 -05:00
|
|
|
summarize_context: PromptVersion
|
2024-09-11 12:06:35 -04:00
|
|
|
summary_description: PromptVersion
|
|
|
|
|
|
|
|
|
|
|
|
class Versions(TypedDict):
|
|
|
|
summarize_pair: PromptFunction
|
2024-11-13 20:13:06 -05:00
|
|
|
summarize_context: PromptFunction
|
2024-09-11 12:06:35 -04:00
|
|
|
summary_description: PromptFunction
|
|
|
|
|
|
|
|
|
|
|
|
def summarize_pair(context: dict[str, Any]) -> list[Message]:
|
|
|
|
return [
|
|
|
|
Message(
|
|
|
|
role='system',
|
|
|
|
content='You are a helpful assistant that combines summaries.',
|
|
|
|
),
|
|
|
|
Message(
|
|
|
|
role='user',
|
|
|
|
content=f"""
|
|
|
|
Synthesize the information from the following two summaries into a single succinct summary.
|
|
|
|
|
|
|
|
Summaries:
|
|
|
|
{json.dumps(context['node_summaries'], indent=2)}
|
|
|
|
|
|
|
|
Respond with a JSON object in the following format:
|
|
|
|
{{
|
|
|
|
"summary": "Summary containing the important information from both summaries"
|
|
|
|
}}
|
|
|
|
""",
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2024-11-13 20:13:06 -05:00
|
|
|
def summarize_context(context: dict[str, Any]) -> list[Message]:
|
|
|
|
return [
|
|
|
|
Message(
|
|
|
|
role='system',
|
|
|
|
content='You are a helpful assistant that combines summaries with new conversation context.',
|
|
|
|
),
|
|
|
|
Message(
|
|
|
|
role='user',
|
|
|
|
content=f"""
|
|
|
|
|
|
|
|
<MESSAGES>
|
|
|
|
{json.dumps(context['previous_episodes'], indent=2)}
|
|
|
|
{json.dumps(context['episode_content'], indent=2)}
|
|
|
|
</MESSAGES>
|
|
|
|
|
|
|
|
Given the above MESSAGES and the following ENTITY name, create a summary for the ENTITY. Your summary must only use
|
|
|
|
information from the provided MESSAGES. Your summary should also only contain information relevant to the
|
|
|
|
provided ENTITY.
|
|
|
|
|
|
|
|
<ENTITY>
|
|
|
|
{context['node_name']}
|
|
|
|
</ENTITY>
|
|
|
|
|
|
|
|
|
|
|
|
Respond with a JSON object in the following format:
|
|
|
|
{{
|
|
|
|
"summary": "Entity summary"
|
|
|
|
}}
|
|
|
|
""",
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2024-09-11 12:06:35 -04:00
|
|
|
def summary_description(context: dict[str, Any]) -> list[Message]:
|
|
|
|
return [
|
|
|
|
Message(
|
|
|
|
role='system',
|
|
|
|
content='You are a helpful assistant that describes provided contents in a single sentence.',
|
|
|
|
),
|
|
|
|
Message(
|
|
|
|
role='user',
|
|
|
|
content=f"""
|
|
|
|
Create a short one sentence description of the summary that explains what kind of information is summarized.
|
|
|
|
|
|
|
|
Summary:
|
|
|
|
{json.dumps(context['summary'], indent=2)}
|
|
|
|
|
|
|
|
Respond with a JSON object in the following format:
|
|
|
|
{{
|
|
|
|
"description": "One sentence description of the provided summary"
|
|
|
|
}}
|
|
|
|
""",
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2024-11-13 20:13:06 -05:00
|
|
|
versions: Versions = {
|
|
|
|
'summarize_pair': summarize_pair,
|
|
|
|
'summarize_context': summarize_context,
|
|
|
|
'summary_description': summary_description,
|
|
|
|
}
|