You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.2 KiB
105 lines
3.2 KiB
/*
|
|
* Copyright 2025 coze-dev Authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package message
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/cloudwego/eino/schema"
|
|
|
|
"github.com/coze-dev/coze-studio/backend/api/model/crossdomain/message"
|
|
"github.com/coze-dev/coze-studio/backend/domain/conversation/message/entity"
|
|
)
|
|
|
|
//go:generate mockgen -destination messagemock/message_mock.go --package messagemock -source message.go
|
|
type Message interface {
|
|
GetByRunIDs(ctx context.Context, conversationID int64, runIDs []int64) ([]*message.Message, error)
|
|
PreCreate(ctx context.Context, msg *message.Message) (*message.Message, error)
|
|
Create(ctx context.Context, msg *message.Message) (*message.Message, error)
|
|
List(ctx context.Context, meta *entity.ListMeta) (*entity.ListResult, error)
|
|
ListWithoutPair(ctx context.Context, req *entity.ListMeta) (*entity.ListResult, error)
|
|
Edit(ctx context.Context, msg *message.Message) (*message.Message, error)
|
|
Delete(ctx context.Context, req *entity.DeleteMeta) error
|
|
GetMessageByID(ctx context.Context, id int64) (*entity.Message, error)
|
|
MessageList(ctx context.Context, req *MessageListRequest) (*MessageListResponse, error)
|
|
GetLatestRunIDs(ctx context.Context, req *GetLatestRunIDsRequest) ([]int64, error)
|
|
GetMessagesByRunIDs(ctx context.Context, req *GetMessagesByRunIDsRequest) (*GetMessagesByRunIDsResponse, error)
|
|
}
|
|
|
|
var defaultSVC Message
|
|
|
|
type MessageMeta = message.Message
|
|
|
|
func DefaultSVC() Message {
|
|
return defaultSVC
|
|
}
|
|
|
|
func SetDefaultSVC(c Message) {
|
|
defaultSVC = c
|
|
}
|
|
|
|
type MessageListRequest struct {
|
|
ConversationID int64
|
|
Limit int64
|
|
BeforeID *string
|
|
AfterID *string
|
|
UserID int64
|
|
AppID int64
|
|
OrderBy *string
|
|
}
|
|
|
|
type MessageListResponse struct {
|
|
Messages []*WfMessage
|
|
FirstID string
|
|
LastID string
|
|
HasMore bool
|
|
}
|
|
|
|
type Content struct {
|
|
Type message.InputType `json:"type"`
|
|
Text *string `json:"text,omitempty"`
|
|
Uri *string `json:"uri,omitempty"`
|
|
Url *string `json:"url,omitempty"`
|
|
}
|
|
|
|
type WfMessage struct {
|
|
ID int64
|
|
Role schema.RoleType `json:"role"` // user or assistant
|
|
MultiContent []*Content `json:"multi_content"`
|
|
Text *string `json:"text,omitempty"`
|
|
ContentType string `json:"content_type"`
|
|
SectionID int64 `json:"section_id"`
|
|
}
|
|
|
|
type GetLatestRunIDsRequest struct {
|
|
ConversationID int64
|
|
UserID int64
|
|
AppID int64
|
|
Rounds int64
|
|
SectionID int64
|
|
InitRunID *int64
|
|
}
|
|
|
|
type GetMessagesByRunIDsRequest struct {
|
|
ConversationID int64
|
|
RunIDs []int64
|
|
}
|
|
|
|
type GetMessagesByRunIDsResponse struct {
|
|
Messages []*WfMessage
|
|
SchemaMessages []*schema.Message
|
|
}
|
|
|