[PR #1785] [MERGED] feat: Add search by name functionality to in-memory JS agent server #1725

Closed
opened 2026-02-15 20:16:38 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/1785
Author: @andrewnguonly
Created: 11/20/2025
Status: Merged
Merged: 11/21/2025
Merged by: @dqbd

Base: mainHead: an/20nov/assistants-search-name


📝 Commits (9)

📊 Changes

8 files changed (+51 additions, -0 deletions)

View changed files

.changeset/chilly-forks-sort.md (+6 -0)
📝 libs/langgraph-api/README.md (+6 -0)
📝 libs/langgraph-api/src/api/assistants.mts (+1 -0)
📝 libs/langgraph-api/src/schemas.mts (+6 -0)
📝 libs/langgraph-api/src/storage/ops.mts (+10 -0)
📝 libs/langgraph-api/src/storage/types.mts (+1 -0)
📝 libs/langgraph-api/tests/api.test.mts (+19 -0)
📝 libs/sdk/src/client.ts (+2 -0)

📄 Description

Summary

We're adding functionality to search for assistants by name. Example:

POST /assistants/search
{
    ...
    "name": "foo",
    ...
}

Functions like WHERE name ILIKE '%foo%'.

The AssistantRepo interface needs to be updated first, since it's a dependency of the JS server implementation.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraphjs/pull/1785 **Author:** [@andrewnguonly](https://github.com/andrewnguonly) **Created:** 11/20/2025 **Status:** ✅ Merged **Merged:** 11/21/2025 **Merged by:** [@dqbd](https://github.com/dqbd) **Base:** `main` ← **Head:** `an/20nov/assistants-search-name` --- ### 📝 Commits (9) - [`6a12058`](https://github.com/langchain-ai/langgraphjs/commit/6a1205882794df0f7abcbd3a2269c707f21d3f43) Add name to AssistantRepo interface. - [`6c49675`](https://github.com/langchain-ai/langgraphjs/commit/6c496753cabe9eb77ed2b15650ba2138eb45064b) Update test. - [`e0c028c`](https://github.com/langchain-ai/langgraphjs/commit/e0c028cc64f8525ccef53e5639cc571a04272d9f) Commit changeset. - [`ced6764`](https://github.com/langchain-ai/langgraphjs/commit/ced6764abafbec47aa35e2d0da1b38260d3b877b) Fix formatting. - [`531c7dc`](https://github.com/langchain-ai/langgraphjs/commit/531c7dccfa6088d78f862f529393c2bd40cba586) Remove test. - [`1d93d13`](https://github.com/langchain-ai/langgraphjs/commit/1d93d1383bc14f9d4915b6164e8caba6917a11b3) Add test and update README. - [`037d429`](https://github.com/langchain-ai/langgraphjs/commit/037d42964e4291db22f8bcca4d8f11787047a7f1) Add more tests. - [`249e4af`](https://github.com/langchain-ai/langgraphjs/commit/249e4afc0dc2c3e278598dab1f3037f4547bc9bb) Fix formatting. - [`91b27ee`](https://github.com/langchain-ai/langgraphjs/commit/91b27ee9f5daeeab2bfc3e11fdceeebd4da29ef3) Add SDK to changeset. ### 📊 Changes **8 files changed** (+51 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/chilly-forks-sort.md` (+6 -0) 📝 `libs/langgraph-api/README.md` (+6 -0) 📝 `libs/langgraph-api/src/api/assistants.mts` (+1 -0) 📝 `libs/langgraph-api/src/schemas.mts` (+6 -0) 📝 `libs/langgraph-api/src/storage/ops.mts` (+10 -0) 📝 `libs/langgraph-api/src/storage/types.mts` (+1 -0) 📝 `libs/langgraph-api/tests/api.test.mts` (+19 -0) 📝 `libs/sdk/src/client.ts` (+2 -0) </details> ### 📄 Description ### Summary We're adding functionality to search for assistants by name. Example: ``` POST /assistants/search { ... "name": "foo", ... } ``` Functions like `WHERE name ILIKE '%foo%'`. The `AssistantRepo` interface needs to be updated first, since it's a dependency of the JS server implementation. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 20:16:38 -05:00
yindo closed this issue 2026-02-15 20:16:38 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#1725