mirror of
https://github.com/getzep/graphiti.git
synced 2025-11-20 12:17:37 +00:00
166 lines
5.4 KiB
Python
166 lines
5.4 KiB
Python
"""
|
|
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):
|
|
extract_message: PromptVersion
|
|
extract_json: PromptVersion
|
|
extract_text: PromptVersion
|
|
reflexion: PromptVersion
|
|
|
|
|
|
class Versions(TypedDict):
|
|
extract_message: PromptFunction
|
|
extract_json: PromptFunction
|
|
extract_text: PromptFunction
|
|
reflexion: PromptFunction
|
|
|
|
|
|
def extract_message(context: dict[str, Any]) -> list[Message]:
|
|
sys_prompt = """You are an AI assistant that extracts entity nodes from conversational messages. Your primary task is to identify and extract the speaker and other significant entities mentioned in the conversation."""
|
|
|
|
user_prompt = f"""
|
|
<PREVIOUS MESSAGES>
|
|
{json.dumps([ep for ep in context['previous_episodes']], indent=2)}
|
|
</PREVIOUS MESSAGES>
|
|
<CURRENT MESSAGE>
|
|
{context["episode_content"]}
|
|
</CURRENT MESSAGE>
|
|
|
|
{context['custom_prompt']}
|
|
|
|
Given the above conversation, extract entity nodes from the CURRENT MESSAGE that are explicitly or implicitly mentioned:
|
|
|
|
Guidelines:
|
|
1. ALWAYS extract the speaker/actor as the first node. The speaker is the part before the colon in each line of dialogue.
|
|
2. Extract other significant entities, concepts, or actors mentioned in the CURRENT MESSAGE.
|
|
3. DO NOT create nodes for relationships or actions.
|
|
4. DO NOT create nodes for temporal information like dates, times or years (these will be added to edges later).
|
|
5. Be as explicit as possible in your node names, using full names.
|
|
6. DO NOT extract entities mentioned only in PREVIOUS MESSAGES, those messages are only to provide context.
|
|
|
|
Respond with a JSON object in the following format:
|
|
{{
|
|
"extracted_node_names": ["Name of the extracted entity", ...],
|
|
}}
|
|
"""
|
|
return [
|
|
Message(role='system', content=sys_prompt),
|
|
Message(role='user', content=user_prompt),
|
|
]
|
|
|
|
|
|
def extract_json(context: dict[str, Any]) -> list[Message]:
|
|
sys_prompt = """You are an AI assistant that extracts entity nodes from JSON.
|
|
Your primary task is to identify and extract relevant entities from JSON files"""
|
|
|
|
user_prompt = f"""
|
|
<SOURCE DESCRIPTION>:
|
|
{context["source_description"]}
|
|
</SOURCE DESCRIPTION>
|
|
<JSON>
|
|
{context["episode_content"]}
|
|
</JSON>
|
|
|
|
{context['custom_prompt']}
|
|
|
|
Given the above source description and JSON, extract relevant entity nodes from the provided JSON:
|
|
|
|
Guidelines:
|
|
1. Always try to extract an entities that the JSON represents. This will often be something like a "name" or "user field
|
|
2. Do NOT extract any properties that contain dates
|
|
|
|
Respond with a JSON object in the following format:
|
|
{{
|
|
"extracted_node_names": ["Name of the extracted entity", ...],
|
|
}}
|
|
"""
|
|
return [
|
|
Message(role='system', content=sys_prompt),
|
|
Message(role='user', content=user_prompt),
|
|
]
|
|
|
|
|
|
def extract_text(context: dict[str, Any]) -> list[Message]:
|
|
sys_prompt = """You are an AI assistant that extracts entity nodes from text. Your primary task is to identify and extract the speaker and other significant entities mentioned in the provided text."""
|
|
|
|
user_prompt = f"""
|
|
<TEXT>
|
|
{context["episode_content"]}
|
|
</TEXT>
|
|
|
|
{context['custom_prompt']}
|
|
|
|
Given the following text, extract entity nodes from the TEXT that are explicitly or implicitly mentioned:
|
|
|
|
Guidelines:
|
|
1. Extract significant entities, concepts, or actors mentioned in the conversation.
|
|
2. Avoid creating nodes for relationships or actions.
|
|
3. Avoid creating nodes for temporal information like dates, times or years (these will be added to edges later).
|
|
4. Be as explicit as possible in your node names, using full names and avoiding abbreviations.
|
|
|
|
Respond with a JSON object in the following format:
|
|
{{
|
|
"extracted_node_names": ["Name of the extracted entity", ...],
|
|
}}
|
|
"""
|
|
return [
|
|
Message(role='system', content=sys_prompt),
|
|
Message(role='user', content=user_prompt),
|
|
]
|
|
|
|
|
|
def reflexion(context: dict[str, Any]) -> list[Message]:
|
|
sys_prompt = """You are an AI assistant that determines which entities have not been extracted from the given context"""
|
|
|
|
user_prompt = f"""
|
|
<PREVIOUS MESSAGES>
|
|
{json.dumps([ep for ep in context['previous_episodes']], indent=2)}
|
|
</PREVIOUS MESSAGES>
|
|
<CURRENT MESSAGE>
|
|
{context["episode_content"]}
|
|
</CURRENT MESSAGE>
|
|
|
|
<EXTRACTED ENTITIES>
|
|
{context["extracted_entities"]}
|
|
</EXTRACTED ENTITIES>
|
|
|
|
Given the above previous messages, current message, and list of extracted entities; determine if any entities haven't been
|
|
extracted:
|
|
|
|
Respond with a JSON object in the following format:
|
|
{{
|
|
"missed_entities": [ "name of entity that wasn't extracted", ...]
|
|
}}
|
|
"""
|
|
return [
|
|
Message(role='system', content=sys_prompt),
|
|
Message(role='user', content=user_prompt),
|
|
]
|
|
|
|
|
|
versions: Versions = {
|
|
'extract_message': extract_message,
|
|
'extract_json': extract_json,
|
|
'extract_text': extract_text,
|
|
'reflexion': reflexion,
|
|
}
|