Zep
zepThe Foundational Memory Layer for AI. Equip your agents with the knowledge to complete tasks, from the mundane to monumental.
Acciones disponibles (43)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Add Fact TripleZEP_ADD_FACT_TRIPLEAcciónTool to add a manually specified fact triple (subject-predicate-object) to the Zep knowledge graph. Use when you need to add explicit relationships between entities. Returns a task_id to monitor processing status.
ZEP_ADD_FACT_TRIPLEAcciónTool to add a manually specified fact triple (subject-predicate-object) to the Zep knowledge graph. Use when you need to add explicit relationships between entities. Returns a task_id to monitor processing status.
Parámetros de entrada
factstringObligatorioThe fact relating the two nodes that this edge represents
user_idstringAdd data to a user graph by providing a user_id
graph_idstringThe graph ID to add data to (alternative to user_id/group_id)
group_idstringAdd data to a group graph by providing a group_id
valid_atstringThe time when the fact becomes valid (ISO 8601 format)
fact_namestringObligatorioThe name of the edge to add. Should be all caps using snake case (e.g., RELATES_TO, WORKS_WITH)
fact_uuidstringThe UUID of the edge to add
created_atstringThe timestamp when the edge was created (ISO 8601 format)
expired_atstringThe time (if any) at which the edge expires (ISO 8601 format)
invalid_atstringThe time (if any) at which the fact stops being true (ISO 8601 format)
source_node_namestringThe name of the source node to add
source_node_uuidstringUUID of the source node
target_node_namestringObligatorioThe name of the target node to add
target_node_uuidstringUUID of the target node
source_node_summarystringThe summary of the source node to add
target_node_summarystringThe summary of the target node to add
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Add Session MemoryZEP_ADD_SESSION_MEMORYAcciónTool to add memory messages to a specified Zep session. Use when you need to store conversation history or context in a session.
ZEP_ADD_SESSION_MEMORYAcciónTool to add memory messages to a specified Zep session. Use when you need to store conversation history or context in a session.
Parámetros de entrada
messagesobject[]ObligatorioCollection of message objects to add to the session.
session_idstringObligatorioThe ID of the session to which memory should be added.
ignore_rolesstring[]Optional list of role types to ignore when adding messages.
return_contextbooleanWhen enabled, instructs the API to return memory context relevant to the most recent messages in the response.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Add Thread MessagesZEP_ADD_THREAD_MESSAGESAcciónTool to add chat messages to a thread in Zep and ingest them into the user knowledge graph. Use when you need to add conversation history to a thread - for best results, add messages on every chat turn in the order they were created.
ZEP_ADD_THREAD_MESSAGESAcciónTool to add chat messages to a thread in Zep and ingest them into the user knowledge graph. Use when you need to add conversation history to a thread - for best results, add messages on every chat turn in the order they were created.
Parámetros de entrada
messagesobject[]ObligatorioA list of message objects in chat message format to add to the thread. For best results, add chat history on every chat turn, including both AI and human messages in a single operation and in the order that the messages were created.
thread_idstringObligatorioThe ID of the thread to which messages should be added.
ignore_rolesstring[]Optional list of role types to ignore when adding messages to graph memory. The message itself will still be added, retained and used as context for messages that are added to a user's graph. Valid values: 'user', 'assistant', 'tool'. Legacy values 'ai' and 'human' are also accepted.
return_contextbooleanSet to true to optionally return a context block relevant to the most recent messages. For latency sensitive applications, this makes the add operation return a context block in the same way that thread.get_user_context does.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Clone GraphZEP_CLONE_GRAPHAcciónTool to clone a user or group graph with new identifiers in Zep. Use when you need to create test copies of user data, migrate user graphs to new identifiers, or set up template graphs for new users. This is an asynchronous operation that returns a task_id for tracking progress.
ZEP_CLONE_GRAPHAcciónTool to clone a user or group graph with new identifiers in Zep. Use when you need to create test copies of user data, migrate user graphs to new identifiers, or set up template graphs for new users. This is an asynchronous operation that returns a task_id for tracking progress.
Parámetros de entrada
source_user_idstringThe user_id of the user whose graph is being cloned. Must point to an existing user. Required if source_graph_id is not provided. Either source_graph_id OR source_user_id must be provided, but not both.
target_user_idstringThe user_id to be set on the cloned user. Must not point to an existing user. Required if target_graph_id is not provided. Can be omitted for auto-generation. Either target_graph_id OR target_user_id must be provided, or both can be omitted for auto-generation.
source_graph_idstringThe ID of the graph to be cloned. Required if source_user_id is not provided. Either source_graph_id OR source_user_id must be provided, but not both.
target_graph_idstringThe ID to be set on the cloned graph. Must not point to an existing graph. Required if target_user_id is not provided. Can be omitted for auto-generation. Either target_graph_id OR target_user_id must be provided, or both can be omitted for auto-generation.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create GraphZEP_CREATE_GRAPHAcciónTool to create a new graph by adding data to Zep. Use when you need to add text, message, or JSON data to a user's graph or a specific graph. The data is processed and an episode node is created in the graph.
ZEP_CREATE_GRAPHAcciónTool to create a new graph by adding data to Zep. Use when you need to add text, message, or JSON data to a user's graph or a specific graph. The data is processed and an episode node is created in the graph.
Parámetros de entrada
datastringObligatorioThe content to add to the graph. Maximum 10,000 characters per request.
typestringObligatorioenumThe data type - one of 'message', 'text', or 'json'
messagetextjsonuser_idstringThe user ID to associate the data with a user graph. One of user_id or graph_id should be provided.
graph_idstringThe graph ID to add data to a specific graph. One of user_id or graph_id should be provided.
created_atstringISO 8601 timestamp for when the data was created. Optional field.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create GroupZEP_CREATE_GROUPAcciónTool to create a new group in Zep for multi-user graph management. Use when you need to create a namespace for shared context across multiple users.
ZEP_CREATE_GROUPAcciónTool to create a new group in Zep for multi-user graph management. Use when you need to create a namespace for shared context across multiple users.
Parámetros de entrada
namestringObligatorioDisplay name for the group
group_idstringObligatorioUnique identifier for the group. This is required to create a group.
descriptionstringObligatorioDescription of the group's purpose
fact_rating_instructionobjectModel for fact rating instruction.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create SessionZEP_CREATE_SESSIONAcciónTool to create a new session in Zep for storing conversation memory. Use when you need to establish a new conversation context linked to an existing user. The user must be created first before creating a session.
ZEP_CREATE_SESSIONAcciónTool to create a new session in Zep for storing conversation memory. Use when you need to establish a new conversation context linked to an existing user. The user must be created first before creating a session.
Parámetros de entrada
user_idstringObligatorioThe unique identifier of the user associated with the session. The user must already exist before creating a session.
metadataobjectDeprecated. Additional metadata as key-value pairs.
session_idstringObligatorioThe unique identifier of the session. Arbitrary identifier that you can map to relevant business objects in your app.
fact_rating_instructionobjectDeprecated. Contains instruction for rating facts and examples with high, medium, and low rating examples.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create ThreadZEP_CREATE_THREADAcciónTool to create a new thread in Zep for a specific user. Use when you need to start a new conversation thread. The user must be created first before creating a thread. Zep automatically warms the cache for that user's graph data in the background to improve query latency.
ZEP_CREATE_THREADAcciónTool to create a new thread in Zep for a specific user. Use when you need to start a new conversation thread. The user must be created first before creating a thread. Zep automatically warms the cache for that user's graph data in the background to improve query latency.
Parámetros de entrada
user_idstringObligatorioThe unique identifier of the user associated with the thread. The user must already exist before creating a thread.
thread_idstringObligatorioThe unique identifier of the thread. This is an arbitrary identifier that you can map to relevant business objects in your app.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create UserZEP_CREATE_USERAcciónTool to create a new user in Zep with properties like user_id, email, and metadata. Use when you need to add a new user to the system. It is recommended to provide at least first_name and ideally last_name for better user association.
ZEP_CREATE_USERAcciónTool to create a new user in Zep with properties like user_id, email, and metadata. Use when you need to add a new user to the system. It is recommended to provide at least first_name and ideally last_name for better user association.
Parámetros de entrada
emailstringThe email address of the user
user_idstringObligatorioThe unique identifier of the user. This is required to create a user.
metadataobjectThe metadata associated with the user. Supports any type of key-value pairs.
last_namestringThe last name of the user. Recommended to provide along with first_name for better user association.
first_namestringThe first name of the user. Recommended to provide to ensure Zep can correctly associate the user with references in the data.
fact_rating_instructionobjectOptional instruction for fact rating (includes instruction text and examples)
disable_default_ontologybooleanWhen enabled, disables default ontology for the user's graph
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete GraphZEP_DELETE_GRAPHAcciónTool to delete a graph from Zep. Use when you need to permanently remove a graph and all associated data.
ZEP_DELETE_GRAPHAcciónTool to delete a graph from Zep. Use when you need to permanently remove a graph and all associated data.
Parámetros de entrada
graph_idstringObligatorioThe unique identifier of the graph to delete
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete GroupZEP_DELETE_GROUPAcciónTool to delete a group from Zep. Use when you need to permanently remove a group and its associated data.
ZEP_DELETE_GROUPAcciónTool to delete a group from Zep. Use when you need to permanently remove a group and its associated data.
Parámetros de entrada
group_idstringObligatorioThe unique identifier of the group to delete
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete Session MemoryZEP_DELETE_SESSIONAcciónTool to delete a session and its memory from Zep. Use when you need to permanently remove all memory data associated with a specific session.
ZEP_DELETE_SESSIONAcciónTool to delete a session and its memory from Zep. Use when you need to permanently remove all memory data associated with a specific session.
Parámetros de entrada
session_idstringObligatorioIdentifier for the session whose memory should be deleted
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete ThreadZEP_DELETE_THREADAcciónTool to delete a thread and its messages from Zep. Note that deleting a thread removes the thread and its messages from the thread history but does not delete associated data in the user's knowledge graph.
ZEP_DELETE_THREADAcciónTool to delete a thread and its messages from Zep. Note that deleting a thread removes the thread and its messages from the thread history but does not delete associated data in the user's knowledge graph.
Parámetros de entrada
thread_idstringObligatorioThe unique identifier of the thread to delete
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete UserZEP_DELETE_USERAcciónTool to delete a user and all associated threads and artifacts from Zep. Use when you need to permanently remove a user and handle Right To Be Forgotten requests. Deleting a user will delete all threads and thread artifacts associated with that user.
ZEP_DELETE_USERAcciónTool to delete a user and all associated threads and artifacts from Zep. Use when you need to permanently remove a user and handle Right To Be Forgotten requests. Deleting a user will delete all threads and thread artifacts associated with that user.
Parámetros de entrada
user_idstringObligatorioUser ID to delete. This is the unique identifier for the user. Can be any string value such as a username, email address, or UUID.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Edge by UUIDZEP_GET_EDGEAcciónTool to retrieve a specific edge by its UUID from the Zep knowledge graph. Use when you need to fetch detailed information about a relationship between nodes, including the semantic fact, connected nodes, and temporal metadata.
ZEP_GET_EDGEAcciónTool to retrieve a specific edge by its UUID from the Zep knowledge graph. Use when you need to fetch detailed information about a relationship between nodes, including the semantic fact, connected nodes, and temporal metadata.
Parámetros de entrada
edge_uuidstringObligatorioThe UUID of the edge to retrieve
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Graph by IDZEP_GET_GRAPH_BY_IDAcciónTool to retrieve a graph by its unique identifier from Zep. Use when you need to fetch details about a specific graph including its name, description, and timestamps.
ZEP_GET_GRAPH_BY_IDAcciónTool to retrieve a graph by its unique identifier from Zep. Use when you need to fetch details about a specific graph including its name, description, and timestamps.
Parámetros de entrada
graph_idstringObligatorioThe unique identifier of the graph to retrieve
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Group by IDZEP_GET_GROUPAcciónTool to retrieve a group by ID from Zep. Use when you need to fetch detailed information about a specific group including its configuration and metadata.
ZEP_GET_GROUPAcciónTool to retrieve a group by ID from Zep. Use when you need to fetch detailed information about a specific group including its configuration and metadata.
Parámetros de entrada
group_idstringObligatorioThe unique identifier of the group to retrieve
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Node Entity EdgesZEP_GET_NODE_EDGESAcciónTool to retrieve all entity edges for a specific node in the Zep knowledge graph. Use when you need to fetch relationship information, facts, and connections for a given node UUID.
ZEP_GET_NODE_EDGESAcciónTool to retrieve all entity edges for a specific node in the Zep knowledge graph. Use when you need to fetch relationship information, facts, and connections for a given node UUID.
Parámetros de entrada
node_uuidstringObligatorioThe UUID of the node for which to retrieve entity edges
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Project InfoZEP_GET_PROJECT_INFOAcciónTool to retrieve project information based on the provided API key. Use when you need to fetch project details including UUID, name, description, and creation timestamp.
ZEP_GET_PROJECT_INFOAcciónTool to retrieve project information based on the provided API key. Use when you need to fetch project details including UUID, name, description, and creation timestamp.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Session by IDZEP_GET_SESSIONAcciónTool to retrieve a session by its unique identifier from Zep. Use when you need to fetch details about a specific session including user association, timestamps, classifications, and metadata.
ZEP_GET_SESSIONAcciónTool to retrieve a session by its unique identifier from Zep. Use when you need to fetch details about a specific session including user association, timestamps, classifications, and metadata.
Parámetros de entrada
session_idstringObligatorioThe unique identifier of the session to retrieve
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Session MemoryZEP_GET_SESSION_MEMORYAcciónTool to retrieve memory for a given session including relevant facts and entities. Use when you need contextual information and historical data from a session.
ZEP_GET_SESSION_MEMORYAcciónTool to retrieve memory for a given session including relevant facts and entities. Use when you need contextual information and historical data from a session.
Parámetros de entrada
lastnintegerThe number of most recent memory entries to retrieve
minRatingnumberThe minimum rating by which to filter relevant facts
session_idstringObligatorioThe ID of the session for which to retrieve memory
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Session Message by UUIDZEP_GET_SESSION_MESSAGEAcciónTool to retrieve a specific message by UUID from a Zep session. Use when you need to fetch a single message's details by its unique identifier from a particular session.
ZEP_GET_SESSION_MESSAGEAcciónTool to retrieve a specific message by UUID from a Zep session. Use when you need to fetch a single message's details by its unique identifier from a particular session.
Parámetros de entrada
session_idstringObligatorioThe unique identifier of the session containing the message
message_uuidstringObligatorioThe UUID of the specific message to retrieve
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Session MessagesZEP_GET_SESSION_MESSAGESAcciónTool to retrieve messages for a given session from Zep. Use when you need to fetch the message history for a specific session with optional pagination support.
ZEP_GET_SESSION_MESSAGESAcciónTool to retrieve messages for a given session from Zep. Use when you need to fetch the message history for a specific session with optional pagination support.
Parámetros de entrada
limitintegerControls the number of messages to return
cursorintegerEnables pagination through message sets
session_idstringObligatorioThe unique identifier of the session for which to retrieve messages
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Task StatusZEP_GET_TASK_STATUSAcciónTool to check the status of asynchronous operations in Zep. Use when monitoring batch adds, clone operations, or fact triple additions. Returns comprehensive task information including status, progress, timestamps, and error details if applicable.
ZEP_GET_TASK_STATUSAcciónTool to check the status of asynchronous operations in Zep. Use when monitoring batch adds, clone operations, or fact triple additions. Returns comprehensive task information including status, progress, timestamps, and error details if applicable.
Parámetros de entrada
task_idstringObligatorioThe unique identifier of the task to retrieve
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Thread MessagesZEP_GET_THREAD_MESSAGESAcciónTool to retrieve conversation history for a specific thread from Zep. Use when you need to fetch the chat message history with optional pagination support via limit, cursor, or lastn parameters.
ZEP_GET_THREAD_MESSAGESAcciónTool to retrieve conversation history for a specific thread from Zep. Use when you need to fetch the chat message history with optional pagination support via limit, cursor, or lastn parameters.
Parámetros de entrada
lastnintegerNumber of most recent messages to return. When provided, this parameter overrides both limit and cursor parameters
limitintegerLimit the number of results returned for pagination
cursorintegerCursor value for pagination to retrieve the next set of results
thread_idstringObligatorioThe unique identifier of the thread to retrieve messages from
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Thread User ContextZEP_GET_THREAD_USER_CONTEXTAcciónTool to retrieve the most relevant user context from the user graph based on thread messages. Use when you need to get context including memory from past threads that is most relevant to the current thread.
ZEP_GET_THREAD_USER_CONTEXTAcciónTool to retrieve the most relevant user context from the user graph based on thread messages. Use when you need to get context including memory from past threads that is most relevant to the current thread.
Parámetros de entrada
modestringenumContext retrieval mode. 'summary' (default) returns summarized natural language context. 'basic' returns raw facts and entities with faster response time (P95 < 200ms)
summarybasicthread_idstringObligatorioThe unique identifier of the thread for which context is being retrieved
template_idstringOptional template ID to use for custom context rendering
min_fact_ratingnumberThe minimum rating by which to filter relevant facts
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get User by IDZEP_GET_USERAcciónTool to retrieve a user by their user ID from Zep. Use when you need to fetch detailed information about a specific user including their profile, metadata, and configuration settings.
ZEP_GET_USERAcciónTool to retrieve a user by their user ID from Zep. Use when you need to fetch detailed information about a specific user including their profile, metadata, and configuration settings.
Parámetros de entrada
user_idstringObligatorioThe user_id of the user to get. This is the unique identifier for the user.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get User NodeZEP_GET_USER_NODEAcciónTool to retrieve a user's graph node and summary from Zep. Use when you need to access the user summary generated from instructions, build custom context blocks, or retrieve facts and information associated with a specific user.
ZEP_GET_USER_NODEAcciónTool to retrieve a user's graph node and summary from Zep. Use when you need to access the user summary generated from instructions, build custom context blocks, or retrieve facts and information associated with a specific user.
Parámetros de entrada
user_idstringObligatorioThe user_id of the user to get the node for. This is a path parameter that must be included in the URL.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get User NodesZEP_GET_USER_NODESAcciónTool to retrieve all nodes for a specific user from their graph in Zep. Use when you need to fetch entity information, preferences, and knowledge graph data for a user. Supports pagination via limit and uuid_cursor parameters.
ZEP_GET_USER_NODESAcciónTool to retrieve all nodes for a specific user from their graph in Zep. Use when you need to fetch entity information, preferences, and knowledge graph data for a user. Supports pagination via limit and uuid_cursor parameters.
Parámetros de entrada
limitintegerMaximum number of items to return for pagination
user_idstringObligatorioThe user ID to retrieve nodes for
uuid_cursorstringUUID based cursor for pagination, should be the UUID of the last item in the previous page
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get User SessionsZEP_GET_USER_SESSIONSAcciónTool to retrieve all sessions for a user from Zep. Use when you need to fetch session history for a specific user ID. Returns an array of session objects with metadata, classifications, and timestamps.
ZEP_GET_USER_SESSIONSAcciónTool to retrieve all sessions for a user from Zep. Use when you need to fetch session history for a specific user ID. Returns an array of session objects with metadata, classifications, and timestamps.
Parámetros de entrada
user_idstringObligatorioUser ID for sessions
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get User ThreadsZEP_GET_USER_THREADSAcciónTool to retrieve all threads for a specific user from Zep. Use when you need to fetch thread history for a specific user ID. Returns an array of thread objects with identifiers and timestamps.
ZEP_GET_USER_THREADSAcciónTool to retrieve all threads for a specific user from Zep. Use when you need to fetch thread history for a specific user ID. Returns an array of thread objects with identifiers and timestamps.
Parámetros de entrada
user_idstringObligatorioUser ID to retrieve threads for
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Graph SearchZEP_GRAPH_SEARCHAcciónTool to perform hybrid graph search combining semantic similarity and BM25 full-text search across the Zep knowledge graph. Use when you need to search for entities, relationships, or episodes within a user, group, or specific graph. Supports various reranking methods and filtering options.
ZEP_GRAPH_SEARCHAcciónTool to perform hybrid graph search combining semantic similarity and BM25 full-text search across the Zep knowledge graph. Use when you need to search for entities, relationships, or episodes within a user, group, or specific graph. Supports various reranking methods and filtering options.
Parámetros de entrada
limitintegerMaximum number of results to return (default: 10, max: 50)
querystringObligatorioThe search text/query string (max 256-400 characters)
scopestringenumSearch target scope - 'edges' (relationships and facts, default), 'nodes' (entities), or 'episodes' (individual messages/chunks)
edgesnodesepisodesuser_idstringSearch within a specific user's graph. One of user_id, group_id, or graph_id must be provided.
graph_idstringThe graph_id to search in. One of user_id, group_id, or graph_id must be provided.
group_idstringSearch within a group graph. One of user_id, group_id, or graph_id must be provided.
rerankerstringenumReranking method - 'rrf' (Reciprocal Rank Fusion, default), 'mmr' (Maximal Marginal Relevance), 'node_distance', 'episode_mentions', or 'cross_encoder'
rrfmmrnode_distanceepisode_mentionscross_encodermmr_lambdanumberDiversity vs relevance balance for MMR reranker (required when using mmr reranker)
search_filtersobjectModel for search filters.
min_fact_ratingnumberMinimum fact rating filter (edges scope only, 0.0-1.0)
center_node_uuidstringCenter node UUID for distance-based reranking (required when using node_distance reranker)
bfs_origin_node_uuidsstring[]Node UUIDs for breadth-first search seeding
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List GraphsZEP_LIST_GRAPHSAcciónTool to retrieve all graphs from Zep with pagination support. Use when you need to fetch a list of graphs with optional pagination via page_number and page_size parameters.
ZEP_LIST_GRAPHSAcciónTool to retrieve all graphs from Zep with pagination support. Use when you need to fetch a list of graphs with optional pagination via page_number and page_size parameters.
Parámetros de entrada
pageSizeintegerNumber of graphs to retrieve per page
pageNumberintegerPage number for pagination, starting from 1
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Groups OrderedZEP_LIST_GROUPS_ORDEREDAcciónTool to retrieve all groups from Zep with pagination support. Use when you need to fetch a list of groups with optional pagination via pageNumber and pageSize parameters.
ZEP_LIST_GROUPS_ORDEREDAcciónTool to retrieve all groups from Zep with pagination support. Use when you need to fetch a list of groups with optional pagination via pageNumber and pageSize parameters.
Parámetros de entrada
pageSizeintegerNumber of groups per page
pageNumberintegerPage number, starting from 1
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Sessions OrderedZEP_LIST_SESSIONS_ORDEREDAcciónTool to retrieve all sessions from Zep with pagination and ordering support. Use when you need to fetch a list of sessions with optional pagination via page_number and page_size parameters.
ZEP_LIST_SESSIONS_ORDEREDAcciónTool to retrieve all sessions from Zep with pagination and ordering support. Use when you need to fetch a list of sessions with optional pagination via page_number and page_size parameters.
Parámetros de entrada
page_sizeintegerNumber of sessions per page
page_numberintegerPage number, starting from 1
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List ThreadsZEP_LIST_THREADSAcciónTool to retrieve all threads from Zep with pagination support. Use when you need to fetch a list of threads with optional pagination and sorting via page_number, page_size, order_by, and asc parameters.
ZEP_LIST_THREADSAcciónTool to retrieve all threads from Zep with pagination support. Use when you need to fetch a list of threads with optional pagination and sorting via page_number, page_size, order_by, and asc parameters.
Parámetros de entrada
ascbooleanOrder direction - true for ascending, false for descending
order_bystringField to order results by. Options: created_at, updated_at, user_id, thread_id
page_sizeintegerNumber of threads to retrieve per page
page_numberintegerPage number for pagination, starting from 1
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Users OrderedZEP_LIST_USERS_ORDEREDAcciónTool to retrieve all users from Zep with pagination support. Use when you need to fetch a list of users with optional pagination via pageNumber and pageSize parameters.
ZEP_LIST_USERS_ORDEREDAcciónTool to retrieve all users from Zep with pagination support. Use when you need to fetch a list of users with optional pagination via pageNumber and pageSize parameters.
Parámetros de entrada
pageSizeintegerNumber of users per page
pageNumberintegerPage number, starting from 1
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List All ThreadsZEP_THREADAcciónTool to list all threads with pagination and ordering support. Use when you need to retrieve threads with optional pagination (page_number, page_size) and ordering (order_by, asc) parameters.
ZEP_THREADAcciónTool to list all threads with pagination and ordering support. Use when you need to retrieve threads with optional pagination (page_number, page_size) and ordering (order_by, asc) parameters.
Parámetros de entrada
ascbooleanOrder direction - true for ascending, false for descending
order_bystringField to order results by. Valid values: created_at, updated_at, user_id, thread_id
page_sizeintegerNumber of threads to retrieve per page
page_numberintegerPage number for pagination, starting from 1
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update GraphZEP_UPDATE_GRAPHAcciónTool to update graph information in Zep including name and description. Use when you need to modify graph properties after creation.
ZEP_UPDATE_GRAPHAcciónTool to update graph information in Zep including name and description. Use when you need to modify graph properties after creation.
Parámetros de entrada
namestringThe updated name for the graph. Optional field to update.
graph_idstringObligatorioThe unique identifier of the graph to update
descriptionstringThe updated description for the graph. Optional field to update.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update GroupZEP_UPDATE_GROUPAcciónTool to update group information in Zep including name, description, and fact rating instructions. Use when you need to modify an existing group's properties.
ZEP_UPDATE_GROUPAcciónTool to update group information in Zep including name, description, and fact rating instructions. Use when you need to modify an existing group's properties.
Parámetros de entrada
namestringNew name for the group
group_idstringObligatorioThe unique identifier of the group to update
descriptionstringNew description for the group
fact_rating_instructionobjectModel for fact rating instruction.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update MessageZEP_UPDATE_MESSAGEAcciónTool to update a message in a Zep thread. Use when you need to modify message content, metadata, role, or other properties of an existing message. Particularly useful for adding or modifying metadata after a message has been created.
ZEP_UPDATE_MESSAGEAcciónTool to update a message in a Zep thread. Use when you need to modify message content, metadata, role, or other properties of an existing message. Particularly useful for adding or modifying metadata after a message has been created.
Parámetros de entrada
namestringCustomizable name of the sender of the message.
rolestringThe role of message sender. Valid values: 'user', 'system', 'assistant'.
contentstringThe content of the message to update.
metadataobjectThe metadata associated with the message as key-value pairs.
created_atstringThe timestamp of when the message was created in RFC3339 format.
message_uuidstringObligatorioThe UUID of the message to update.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update Session MetadataZEP_UPDATE_SESSIONAcciónTool to update session metadata in Zep. Use when you need to modify or add metadata to an existing session. Metadata is merged, so existing keys are preserved unless explicitly overwritten.
ZEP_UPDATE_SESSIONAcciónTool to update session metadata in Zep. Use when you need to modify or add metadata to an existing session. Metadata is merged, so existing keys are preserved unless explicitly overwritten.
Parámetros de entrada
metadataobjectObligatorioSession metadata as key-value pairs. Metadata is merged with existing metadata, so only provided keys will be updated. To delete a key, set its value to None or empty string.
session_idstringObligatorioThe unique identifier of the session to update
fact_rating_instructionobjectOptional instruction to use for fact rating. This field is deprecated. Note: Fact rating instructions cannot be unset once set.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update UserZEP_UPDATE_USERAcciónTool to update an existing user's information in Zep including email, metadata, and ontology settings. Use when you need to modify user properties after creation.
ZEP_UPDATE_USERAcciónTool to update an existing user's information in Zep including email, metadata, and ontology settings. Use when you need to modify user properties after creation.
Parámetros de entrada
emailstringThe email address of the user. Optional field to update.
user_idstringObligatorioThe unique identifier of the user to update (max 500 characters). This is the user that will be modified.
metadataobjectA map of key-value pairs for storing additional user information. Optional field to update.
last_namestringThe last name of the user. Optional field to update.
first_namestringThe first name of the user. Optional field to update.
fact_rating_instructionobjectOptional instruction to use for fact rating. Can include instruction text and examples.
disable_default_ontologybooleanWhen true, disables the use of default/fallback ontology for the user's graph. Optional field to update.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not