MCPcopy Index your code
hub / github.com/CopilotKit/CopilotKit / renameThread

Function renameThread

packages/core/src/threads.ts:1355–1363  ·  view source on GitHub ↗
(threadId: string, name: string)

Source from the content-addressed store, hash-verified

1353 store.dispatch(threadAdapterEvents.fetchNextPageRequested());
1354 },
1355 renameThread(threadId: string, name: string): Promise<void> {
1356 return trackMutation(
1357 threadAdapterEvents.renameRequested({
1358 requestId: createThreadRequestId(),
1359 threadId,
1360 name,
1361 }),
1362 );
1363 },
1364 archiveThread(threadId: string): Promise<void> {
1365 return trackMutation(
1366 threadAdapterEvents.archiveRequested({

Callers

nothing calls this directly

Calls 2

trackMutationFunction · 0.85
createThreadRequestIdFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…