feat: support llm start node user input multi parts

This commit is contained in:
zhuangjie.1125
2025-08-07 23:48:12 +08:00
parent dc7f6cfad4
commit 140bbd3201
2 changed files with 2 additions and 10 deletions

View File

@ -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)

View File

@ -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)
}