feat: Add AI Error Debugging using OpenAI (#8805)

This commit is contained in:
Alex Grozav
2024-03-13 16:48:00 +02:00
committed by GitHub
parent e3dd353ea7
commit 948c383999
26 changed files with 1838 additions and 362 deletions

View File

@@ -2454,6 +2454,8 @@ export interface IPublicApiSettings {
export type ExpressionEvaluatorType = 'tmpl' | 'tournament';
export type N8nAIProviderType = 'openai' | 'unknown';
export interface IN8nUISettings {
endpointForm: string;
endpointFormTest: string;
@@ -2561,6 +2563,8 @@ export interface IN8nUISettings {
};
ai: {
enabled: boolean;
provider: string;
errorDebugging: boolean;
};
workflowHistory: {
pruneTime: number;