n8n-nodes-graphiti-memory
Version:
Community node for self-hosted Graphiti (Zep) memory
35 lines (34 loc) • 1.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GraphitiApi = void 0;
class GraphitiApi {
constructor() {
this.name = 'graphitiApi';
this.displayName = 'Graphiti API';
this.documentationUrl = 'https://github.com/getzep/graphiti';
this.properties = [
{
displayName: 'Base URL',
name: 'baseUrl',
type: 'string',
placeholder: 'https://cal-zep.xcj1zp.easypanel.host',
default: '',
required: true,
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
description: 'Preencha somente se o seu servidor exigir autenticação',
},
{
displayName: 'Use HTTPS',
name: 'useHttps',
type: 'boolean',
default: true,
},
];
}
}
exports.GraphitiApi = GraphitiApi;