mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-17 23:51:51 +03:00
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
|
import { UUID } from "crypto";
|
||
|
|
||
|
const brainDataKey = "quivr-knowledge";
|
||
|
|
||
|
export const getKnowledgeDataKey = (knowledgeId: UUID): string =>
|
||
|
`${brainDataKey}-${knowledgeId}`;
|