From f86dedfac426e2e0bb3bd5e15b75712e338ae29b Mon Sep 17 00:00:00 2001 From: Ben White Date: Wed, 24 Jun 2026 13:54:51 +0200 Subject: [PATCH] feat(agent-applications): session search matches conversation text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With the backend search_text digest landing (PostHog/posthog#65764), the sessions search now matches transcript text — restore the placeholder to "Search conversations…" and update the param doc (both were narrowed to "id or external key" while transcript search was deferred for scale). Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/shared/src/agent-platform-types.ts | 2 +- .../agent-applications/components/AgentSessionsPane.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/shared/src/agent-platform-types.ts b/packages/shared/src/agent-platform-types.ts index de61bdb7fa..52965dca12 100644 --- a/packages/shared/src/agent-platform-types.ts +++ b/packages/shared/src/agent-platform-types.ts @@ -470,7 +470,7 @@ export interface AgentSessionsListParams { agent_user_id?: string; created_after?: string; created_before?: string; - /** Case-insensitive server-side match over the session id and external key. */ + /** Case-insensitive server-side match over the conversation text, id, and external key. */ search?: string; } diff --git a/packages/ui/src/features/agent-applications/components/AgentSessionsPane.tsx b/packages/ui/src/features/agent-applications/components/AgentSessionsPane.tsx index 803519fb6c..f21f50bf56 100644 --- a/packages/ui/src/features/agent-applications/components/AgentSessionsPane.tsx +++ b/packages/ui/src/features/agent-applications/components/AgentSessionsPane.tsx @@ -103,7 +103,7 @@ export function AgentSessionsPane({ idOrSlug }: { idOrSlug: string }) { type="search" value={queryInput} onChange={(e) => changeQuery(e.currentTarget.value)} - placeholder="Search by id or external key…" + placeholder="Search conversations…" aria-label="Search sessions" className="h-8 w-full rounded-(--radius-2) border border-border bg-(--color-panel-solid) pr-2 pl-8 text-[12.5px]" />