n8n
Version:
n8n Workflow Automation Tool
15 lines (14 loc) • 559 B
TypeScript
export declare const BUILDER_TOOLS: {
readonly READ_CONFIG: "read_config";
readonly WRITE_CONFIG: "write_config";
readonly PATCH_CONFIG: "patch_config";
readonly BUILD_CUSTOM_TOOL: "build_custom_tool";
readonly CREATE_SKILL: "create_skill";
readonly LIST_INTEGRATION_TYPES: "list_integration_types";
readonly RESOLVE_LLM: "resolve_llm";
};
export type BuilderToolName = (typeof BUILDER_TOOLS)[keyof typeof BUILDER_TOOLS];
export declare const AGENT_THREAD_PREFIX: {
readonly TEST: "test-";
readonly BUILDER: "builder:";
};