NAiOS IconNAiOS Logo
Volver al catálogo

Zep

zep

The Foundational Memory Layer for AI. Equip your agents with the knowledge to complete tasks, from the mundane to monumental.

Acciones
43
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

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ón

Tool 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

  • factstringObligatorio

    The fact relating the two nodes that this edge represents

  • user_idstring

    Add data to a user graph by providing a user_id

  • graph_idstring

    The graph ID to add data to (alternative to user_id/group_id)

  • group_idstring

    Add data to a group graph by providing a group_id

  • valid_atstring

    The time when the fact becomes valid (ISO 8601 format)

  • fact_namestringObligatorio

    The name of the edge to add. Should be all caps using snake case (e.g., RELATES_TO, WORKS_WITH)

  • fact_uuidstring

    The UUID of the edge to add

  • created_atstring

    The timestamp when the edge was created (ISO 8601 format)

  • expired_atstring

    The time (if any) at which the edge expires (ISO 8601 format)

  • invalid_atstring

    The time (if any) at which the fact stops being true (ISO 8601 format)

  • source_node_namestring

    The name of the source node to add

  • source_node_uuidstring

    UUID of the source node

  • target_node_namestringObligatorio

    The name of the target node to add

  • target_node_uuidstring

    UUID of the target node

  • source_node_summarystring

    The summary of the source node to add

  • target_node_summarystring

    The summary of the target node to add

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Add Session MemoryZEP_ADD_SESSION_MEMORYAcción

Tool 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[]Obligatorio

    Collection of message objects to add to the session.

  • session_idstringObligatorio

    The ID of the session to which memory should be added.

  • ignore_rolesstring[]

    Optional list of role types to ignore when adding messages.

  • return_contextboolean

    When enabled, instructs the API to return memory context relevant to the most recent messages in the response.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Add Thread MessagesZEP_ADD_THREAD_MESSAGESAcción

Tool 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[]Obligatorio

    A 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_idstringObligatorio

    The 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_contextboolean

    Set 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Clone GraphZEP_CLONE_GRAPHAcción

Tool 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_idstring

    The 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_idstring

    The 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_idstring

    The 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_idstring

    The 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create GraphZEP_CREATE_GRAPHAcción

Tool 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

  • datastringObligatorio

    The content to add to the graph. Maximum 10,000 characters per request.

  • typestringObligatorioenum

    The data type - one of 'message', 'text', or 'json'

    messagetextjson
  • user_idstring

    The user ID to associate the data with a user graph. One of user_id or graph_id should be provided.

  • graph_idstring

    The graph ID to add data to a specific graph. One of user_id or graph_id should be provided.

  • created_atstring

    ISO 8601 timestamp for when the data was created. Optional field.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create GroupZEP_CREATE_GROUPAcción

Tool 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

  • namestringObligatorio

    Display name for the group

  • group_idstringObligatorio

    Unique identifier for the group. This is required to create a group.

  • descriptionstringObligatorio

    Description of the group's purpose

  • fact_rating_instructionobject

    Model for fact rating instruction.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create SessionZEP_CREATE_SESSIONAcción

Tool 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_idstringObligatorio

    The unique identifier of the user associated with the session. The user must already exist before creating a session.

  • metadataobject

    Deprecated. Additional metadata as key-value pairs.

  • session_idstringObligatorio

    The unique identifier of the session. Arbitrary identifier that you can map to relevant business objects in your app.

  • fact_rating_instructionobject

    Deprecated. Contains instruction for rating facts and examples with high, medium, and low rating examples.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create ThreadZEP_CREATE_THREADAcción

Tool 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_idstringObligatorio

    The unique identifier of the user associated with the thread. The user must already exist before creating a thread.

  • thread_idstringObligatorio

    The 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create UserZEP_CREATE_USERAcción

Tool 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

  • emailstring

    The email address of the user

  • user_idstringObligatorio

    The unique identifier of the user. This is required to create a user.

  • metadataobject

    The metadata associated with the user. Supports any type of key-value pairs.

  • last_namestring

    The last name of the user. Recommended to provide along with first_name for better user association.

  • first_namestring

    The first name of the user. Recommended to provide to ensure Zep can correctly associate the user with references in the data.

  • fact_rating_instructionobject

    Optional instruction for fact rating (includes instruction text and examples)

  • disable_default_ontologyboolean

    When enabled, disables default ontology for the user's graph

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete GraphZEP_DELETE_GRAPHAcción

Tool to delete a graph from Zep. Use when you need to permanently remove a graph and all associated data.

Parámetros de entrada

  • graph_idstringObligatorio

    The unique identifier of the graph to delete

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete GroupZEP_DELETE_GROUPAcción

Tool to delete a group from Zep. Use when you need to permanently remove a group and its associated data.

Parámetros de entrada

  • group_idstringObligatorio

    The unique identifier of the group to delete

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete Session MemoryZEP_DELETE_SESSIONAcción

Tool 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_idstringObligatorio

    Identifier for the session whose memory should be deleted

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete ThreadZEP_DELETE_THREADAcción

Tool 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_idstringObligatorio

    The unique identifier of the thread to delete

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete UserZEP_DELETE_USERAcción

Tool 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_idstringObligatorio

    User 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Edge by UUIDZEP_GET_EDGEAcción

Tool 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_uuidstringObligatorio

    The UUID of the edge to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Graph by IDZEP_GET_GRAPH_BY_IDAcción

Tool 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_idstringObligatorio

    The unique identifier of the graph to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Group by IDZEP_GET_GROUPAcción

Tool 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_idstringObligatorio

    The unique identifier of the group to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Node Entity EdgesZEP_GET_NODE_EDGESAcción

Tool 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_uuidstringObligatorio

    The UUID of the node for which to retrieve entity edges

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Project InfoZEP_GET_PROJECT_INFOAcción

Tool 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Session by IDZEP_GET_SESSIONAcción

Tool 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_idstringObligatorio

    The unique identifier of the session to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Session MemoryZEP_GET_SESSION_MEMORYAcción

Tool 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

  • lastninteger

    The number of most recent memory entries to retrieve

  • minRatingnumber

    The minimum rating by which to filter relevant facts

  • session_idstringObligatorio

    The ID of the session for which to retrieve memory

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Session Message by UUIDZEP_GET_SESSION_MESSAGEAcción

Tool 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_idstringObligatorio

    The unique identifier of the session containing the message

  • message_uuidstringObligatorio

    The UUID of the specific message to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Session MessagesZEP_GET_SESSION_MESSAGESAcción

Tool 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

  • limitinteger

    Controls the number of messages to return

  • cursorinteger

    Enables pagination through message sets

  • session_idstringObligatorio

    The unique identifier of the session for which to retrieve messages

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Task StatusZEP_GET_TASK_STATUSAcción

Tool 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_idstringObligatorio

    The unique identifier of the task to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Thread MessagesZEP_GET_THREAD_MESSAGESAcción

Tool 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

  • lastninteger

    Number of most recent messages to return. When provided, this parameter overrides both limit and cursor parameters

  • limitinteger

    Limit the number of results returned for pagination

  • cursorinteger

    Cursor value for pagination to retrieve the next set of results

  • thread_idstringObligatorio

    The unique identifier of the thread to retrieve messages from

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Thread User ContextZEP_GET_THREAD_USER_CONTEXTAcción

Tool 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

  • modestringenum

    Context retrieval mode. 'summary' (default) returns summarized natural language context. 'basic' returns raw facts and entities with faster response time (P95 < 200ms)

    summarybasic
  • thread_idstringObligatorio

    The unique identifier of the thread for which context is being retrieved

  • template_idstring

    Optional template ID to use for custom context rendering

  • min_fact_ratingnumber

    The minimum rating by which to filter relevant facts

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get User by IDZEP_GET_USERAcción

Tool 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_idstringObligatorio

    The user_id of the user to get. This is the unique identifier for the user.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get User NodeZEP_GET_USER_NODEAcción

Tool 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_idstringObligatorio

    The 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get User NodesZEP_GET_USER_NODESAcción

Tool 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

  • limitinteger

    Maximum number of items to return for pagination

  • user_idstringObligatorio

    The user ID to retrieve nodes for

  • uuid_cursorstring

    UUID based cursor for pagination, should be the UUID of the last item in the previous page

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get User SessionsZEP_GET_USER_SESSIONSAcción

Tool 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_idstringObligatorio

    User ID for sessions

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get User ThreadsZEP_GET_USER_THREADSAcción

Tool 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_idstringObligatorio

    User ID to retrieve threads for

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Graph SearchZEP_GRAPH_SEARCHAcción

Tool 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

  • limitinteger

    Maximum number of results to return (default: 10, max: 50)

  • querystringObligatorio

    The search text/query string (max 256-400 characters)

  • scopestringenum

    Search target scope - 'edges' (relationships and facts, default), 'nodes' (entities), or 'episodes' (individual messages/chunks)

    edgesnodesepisodes
  • user_idstring

    Search within a specific user's graph. One of user_id, group_id, or graph_id must be provided.

  • graph_idstring

    The graph_id to search in. One of user_id, group_id, or graph_id must be provided.

  • group_idstring

    Search within a group graph. One of user_id, group_id, or graph_id must be provided.

  • rerankerstringenum

    Reranking method - 'rrf' (Reciprocal Rank Fusion, default), 'mmr' (Maximal Marginal Relevance), 'node_distance', 'episode_mentions', or 'cross_encoder'

    rrfmmrnode_distanceepisode_mentionscross_encoder
  • mmr_lambdanumber

    Diversity vs relevance balance for MMR reranker (required when using mmr reranker)

  • search_filtersobject

    Model for search filters.

  • min_fact_ratingnumber

    Minimum fact rating filter (edges scope only, 0.0-1.0)

  • center_node_uuidstring

    Center 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List GraphsZEP_LIST_GRAPHSAcción

Tool 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

  • pageSizeinteger

    Number of graphs to retrieve per page

  • pageNumberinteger

    Page number for pagination, starting from 1

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Groups OrderedZEP_LIST_GROUPS_ORDEREDAcción

Tool 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

  • pageSizeinteger

    Number of groups per page

  • pageNumberinteger

    Page number, starting from 1

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Sessions OrderedZEP_LIST_SESSIONS_ORDEREDAcción

Tool 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_sizeinteger

    Number of sessions per page

  • page_numberinteger

    Page number, starting from 1

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List ThreadsZEP_LIST_THREADSAcción

Tool 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

  • ascboolean

    Order direction - true for ascending, false for descending

  • order_bystring

    Field to order results by. Options: created_at, updated_at, user_id, thread_id

  • page_sizeinteger

    Number of threads to retrieve per page

  • page_numberinteger

    Page number for pagination, starting from 1

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Users OrderedZEP_LIST_USERS_ORDEREDAcción

Tool 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

  • pageSizeinteger

    Number of users per page

  • pageNumberinteger

    Page number, starting from 1

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List All ThreadsZEP_THREADAcción

Tool 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

  • ascboolean

    Order direction - true for ascending, false for descending

  • order_bystring

    Field to order results by. Valid values: created_at, updated_at, user_id, thread_id

  • page_sizeinteger

    Number of threads to retrieve per page

  • page_numberinteger

    Page number for pagination, starting from 1

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update GraphZEP_UPDATE_GRAPHAcción

Tool to update graph information in Zep including name and description. Use when you need to modify graph properties after creation.

Parámetros de entrada

  • namestring

    The updated name for the graph. Optional field to update.

  • graph_idstringObligatorio

    The unique identifier of the graph to update

  • descriptionstring

    The updated description for the graph. Optional field to update.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update GroupZEP_UPDATE_GROUPAcción

Tool 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

  • namestring

    New name for the group

  • group_idstringObligatorio

    The unique identifier of the group to update

  • descriptionstring

    New description for the group

  • fact_rating_instructionobject

    Model for fact rating instruction.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update MessageZEP_UPDATE_MESSAGEAcción

Tool 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

  • namestring

    Customizable name of the sender of the message.

  • rolestring

    The role of message sender. Valid values: 'user', 'system', 'assistant'.

  • contentstring

    The content of the message to update.

  • metadataobject

    The metadata associated with the message as key-value pairs.

  • created_atstring

    The timestamp of when the message was created in RFC3339 format.

  • message_uuidstringObligatorio

    The UUID of the message to update.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update Session MetadataZEP_UPDATE_SESSIONAcción

Tool 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

  • metadataobjectObligatorio

    Session 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_idstringObligatorio

    The unique identifier of the session to update

  • fact_rating_instructionobject

    Optional instruction to use for fact rating. This field is deprecated. Note: Fact rating instructions cannot be unset once set.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update UserZEP_UPDATE_USERAcción

Tool 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

  • emailstring

    The email address of the user. Optional field to update.

  • user_idstringObligatorio

    The unique identifier of the user to update (max 500 characters). This is the user that will be modified.

  • metadataobject

    A map of key-value pairs for storing additional user information. Optional field to update.

  • last_namestring

    The last name of the user. Optional field to update.

  • first_namestring

    The first name of the user. Optional field to update.

  • fact_rating_instructionobject

    Optional instruction to use for fact rating. Can include instruction text and examples.

  • disable_default_ontologyboolean

    When true, disables the use of default/fallback ontology for the user's graph. Optional field to update.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not