feat(fase4): add AI response and sentiment nodes

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 11:13:15 +00:00
parent 76c48ff78f
commit 991bd161f0
3 changed files with 137 additions and 3 deletions

View File

@@ -1,6 +1,18 @@
from app.nodes.advanced import (
DelayExecutor,
GoToExecutor,
LoopExecutor,
RandomExecutor,
SwitchExecutor,
)
from app.nodes.ai import AIResponseExecutor, AISentimentExecutor
from app.nodes.base import NodeExecutor, NodeRegistry
from app.nodes.basic import (
TriggerExecutor, MessageExecutor, ButtonsExecutor,
WaitInputExecutor, SetVariableExecutor, ConditionExecutor
ButtonsExecutor,
ConditionExecutor,
MessageExecutor,
SetVariableExecutor,
TriggerExecutor,
WaitInputExecutor,
)
from app.nodes.script import JavaScriptExecutor, HttpRequestExecutor
from app.nodes.script import HttpRequestExecutor, JavaScriptExecutor