MCPcopy
hub / github.com/CopilotKit/CopilotKit / warnTranscriptIgnored

Function warnTranscriptIgnored

packages/bot/src/thread.ts:484–490  ·  view source on GitHub ↗

Warn once when `runAgent({ transcript })` is used without identity/transcripts configured.

()

Source from the content-addressed store, hash-verified

482let transcriptWarned = false;
483/** Warn once when `runAgent({ transcript })` is used without identity/transcripts configured. */
484function warnTranscriptIgnored(): void {
485 if (transcriptWarned) return;
486 transcriptWarned = true;
487 console.warn(
488 "[bot] runAgent({ transcript }) ignored — configure store.identity + store.transcripts so a userKey resolves",
489 );
490}

Callers 1

runMethod · 0.85

Calls 1

warnMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…