fix: remove deprecation from agent passages endpoints (#9117)

* fix: remove deprecation from agent passages endpoints

The client.agent.passages endpoints (list, create, search, delete) were
incorrectly marked as deprecated. This would break significant amounts
of user code and negatively impact developer experience.

Fixes #9116

Co-authored-by: Ari Webb <AriWebb@users.noreply.github.com>

* stage publish api

---------

Co-authored-by: letta-code <248085862+letta-code@users.noreply.github.com>
Co-authored-by: Ari Webb <AriWebb@users.noreply.github.com>
Co-authored-by: Ari Webb <ari@letta.com>
This commit is contained in:
github-actions[bot]
2026-01-26 18:15:10 -08:00
committed by Caren Thomas
parent 5dc70e48eb
commit 62a00cc672
2 changed files with 3 additions and 8 deletions

View File

@@ -7007,7 +7007,6 @@
"summary": "List Passages",
"description": "Retrieve the memories in an agent's archival memory store (paginated query).",
"operationId": "list_passages",
"deprecated": true,
"parameters": [
{
"name": "agent_id",
@@ -7149,7 +7148,6 @@
"summary": "Create Passage",
"description": "Insert a memory into an agent's archival memory store.",
"operationId": "create_passage",
"deprecated": true,
"parameters": [
{
"name": "agent_id",
@@ -7211,7 +7209,6 @@
"summary": "Search Archival Memory",
"description": "Search archival memory using semantic (embedding-based) search with optional temporal filtering.\n\nThis endpoint allows manual triggering of archival memory searches, enabling users to query\nan agent's archival memory store directly via the API. The search uses the same functionality\nas the agent's archival_memory_search tool but is accessible for external API usage.",
"operationId": "search_archival_memory",
"deprecated": true,
"parameters": [
{
"name": "agent_id",
@@ -7360,7 +7357,6 @@
"summary": "Delete Passage",
"description": "Delete a memory from an agent's archival memory store.",
"operationId": "delete_passage",
"deprecated": true,
"parameters": [
{
"name": "memory_id",