UNPKG

graphzep

Version:

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

16 lines (15 loc) 350 B
export class BaseGraphDriver { uri; username; password; database; constructor(uri, username, password, database) { this.uri = uri; this.username = username; this.password = password; this.database = database; } formatQuery(query) { return query.trim().replace(/\s+/g, ' '); } }