feat: support llm start node user input multi parts
This commit is contained in:
@ -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)
|
||||
|
||||
@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user