From 140bbd32017aa2c4b04dfc7d520f00a2b46a02e6 Mon Sep 17 00:00:00 2001 From: "zhuangjie.1125" Date: Thu, 7 Aug 2025 23:48:12 +0800 Subject: [PATCH] feat: support llm start node user input multi parts --- backend/application/workflow/chatflow.go | 8 ++------ backend/crossdomain/impl/workflow/workflow.go | 4 ---- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/backend/application/workflow/chatflow.go b/backend/application/workflow/chatflow.go index bf69c3d32..9a78331e2 100644 --- a/backend/application/workflow/chatflow.go +++ b/backend/application/workflow/chatflow.go @@ -20,6 +20,8 @@ import ( "context" "errors" "fmt" + crossconversation "github.com/coze-dev/coze-studio/backend/crossdomain/contract/conversation" + crossmessage "github.com/coze-dev/coze-studio/backend/crossdomain/contract/message" "runtime/debug" "strconv" "strings" @@ -232,10 +234,6 @@ func defaultCard() *inputCard { return card } - - - - func (w *ApplicationService) CreateApplicationConversationDef(ctx context.Context, req *workflow.CreateProjectConversationDefRequest) (resp *workflow.CreateProjectConversationDefResponse, err error) { defer func() { if panicErr := recover(); panicErr != nil { @@ -1372,5 +1370,3 @@ func renderSelectOptionCardDSL(c string) (string, error) { return rCardString, nil } -======= ->>>>>>> a86ea8d1 (feat(backend):workflow support conversation manager & add conversation/message nodes) diff --git a/backend/crossdomain/impl/workflow/workflow.go b/backend/crossdomain/impl/workflow/workflow.go index d3a4fbbc4..78f472da2 100644 --- a/backend/crossdomain/impl/workflow/workflow.go +++ b/backend/crossdomain/impl/workflow/workflow.go @@ -99,7 +99,3 @@ func (i *impl) GetWorkflowIDsByAppID(ctx context.Context, appID int64) ([]int64, return a.ID }), err } - -func (i *impl) InitApplicationDefaultConversationTemplate(ctx context.Context, spaceID int64, appID int64, userID int64) error { - return i.DomainSVC.InitApplicationDefaultConversationTemplate(ctx, spaceID, appID, userID) -}