UNPKG

graphzep

Version:

GraphZep: A temporal knowledge graph memory system for AI agents based on the Zep paper

35 lines 910 B
{ "compilerOptions": { "target": "ES2022", "module": "ESNext", "lib": ["ES2022"], "declaration": true, "outDir": "./dist", "rootDir": "./src", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "moduleResolution": "bundler", "allowSyntheticDefaultImports": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "sourceMap": true, "types": ["node"], "baseUrl": "./src", "paths": { "@/*": ["*"], "@core/*": ["core/*"], "@drivers/*": ["drivers/*"], "@llm/*": ["llm/*"], "@embedders/*": ["embedders/*"], "@search/*": ["search/*"], "@utils/*": ["utils/*"], "@prompts/*": ["prompts/*"], "@types/*": ["types/*"] } }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"] }