MCPcopy
hub / github.com/CopilotKit/CopilotKit / storeKind

Function storeKind

packages/bot/src/create-bot.ts:52–58  ·  view source on GitHub ↗
(s: StateStore)

Source from the content-addressed store, hash-verified

50};
51
52function storeKind(s: StateStore): "memory" | "postgres" | "redis" | "custom" {
53 const n = s.constructor?.name;
54 if (n === "MemoryStore") return "memory";
55 if (n === "PostgresStore") return "postgres";
56 if (n === "RedisStore") return "redis";
57 return "custom";
58}
59
60/** Platforms whose tokens the emoji table can normalize. */
61const EMOJI_PLATFORMS: ReadonlySet<EmojiPlatform> = new Set([

Callers 1

createBotFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…