init copy

This commit is contained in:
2026-01-01 03:24:36 +03:00
commit 82907eb0f5
6 changed files with 561 additions and 0 deletions

10
AiChatBox.cs Normal file
View File

@@ -0,0 +1,10 @@
using s8n_ai.Models;
using s8n_runtime;
namespace s8n_ai;
public class AiChatBox : WorkflowRuntimeNodeBase
{
public string? Title { get; set; }
public event EventHandler<AiMessage>? NewMessage;
}