| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- package dify
- import (
- "errors"
- "fmt"
- "io"
- "net/http"
- "one-api/dto"
- "one-api/relay/channel"
- relaycommon "one-api/relay/common"
- "one-api/types"
- "github.com/gin-gonic/gin"
- )
- const (
- BotTypeChatFlow = 1 // chatflow default
- BotTypeAgent = 2
- BotTypeWorkFlow = 3
- BotTypeCompletion = 4
- )
- type Adaptor struct {
- BotType int
- }
- func (a *Adaptor) ConvertClaudeRequest(*gin.Context, *relaycommon.RelayInfo, *dto.ClaudeRequest) (any, error) {
- //TODO implement me
- panic("implement me")
- return nil, nil
- }
- func (a *Adaptor) ConvertAudioRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.AudioRequest) (io.Reader, error) {
- //TODO implement me
- return nil, errors.New("not implemented")
- }
- func (a *Adaptor) ConvertImageRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.ImageRequest) (any, error) {
- //TODO implement me
- return nil, errors.New("not implemented")
- }
- func (a *Adaptor) Init(info *relaycommon.RelayInfo) {
- //if strings.HasPrefix(info.UpstreamModelName, "agent") {
- // a.BotType = BotTypeAgent
- //} else if strings.HasPrefix(info.UpstreamModelName, "workflow") {
- // a.BotType = BotTypeWorkFlow
- //} else if strings.HasPrefix(info.UpstreamModelName, "chat") {
- // a.BotType = BotTypeCompletion
- //} else {
- //}
- a.BotType = BotTypeChatFlow
- }
- func (a *Adaptor) GetRequestURL(info *relaycommon.RelayInfo) (string, error) {
- switch a.BotType {
- case BotTypeWorkFlow:
- return fmt.Sprintf("%s/v1/workflows/run", info.BaseUrl), nil
- case BotTypeCompletion:
- return fmt.Sprintf("%s/v1/completion-messages", info.BaseUrl), nil
- case BotTypeAgent:
- fallthrough
- default:
- return fmt.Sprintf("%s/v1/chat-messages", info.BaseUrl), nil
- }
- }
- func (a *Adaptor) SetupRequestHeader(c *gin.Context, req *http.Header, info *relaycommon.RelayInfo) error {
- channel.SetupApiRequestHeader(info, c, req)
- req.Set("Authorization", "Bearer "+info.ApiKey)
- return nil
- }
- func (a *Adaptor) ConvertOpenAIRequest(c *gin.Context, info *relaycommon.RelayInfo, request *dto.GeneralOpenAIRequest) (any, error) {
- if request == nil {
- return nil, errors.New("request is nil")
- }
- return requestOpenAI2Dify(c, info, *request), nil
- }
- func (a *Adaptor) ConvertRerankRequest(c *gin.Context, relayMode int, request dto.RerankRequest) (any, error) {
- return nil, nil
- }
- func (a *Adaptor) ConvertEmbeddingRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.EmbeddingRequest) (any, error) {
- //TODO implement me
- return nil, errors.New("not implemented")
- }
- func (a *Adaptor) ConvertOpenAIResponsesRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.OpenAIResponsesRequest) (any, error) {
- // TODO implement me
- return nil, errors.New("not implemented")
- }
- func (a *Adaptor) DoRequest(c *gin.Context, info *relaycommon.RelayInfo, requestBody io.Reader) (any, error) {
- return channel.DoApiRequest(a, c, info, requestBody)
- }
- func (a *Adaptor) DoResponse(c *gin.Context, resp *http.Response, info *relaycommon.RelayInfo) (usage any, err *types.NewAPIError) {
- if info.IsStream {
- return difyStreamHandler(c, info, resp)
- } else {
- return difyHandler(c, info, resp)
- }
- return
- }
- func (a *Adaptor) GetModelList() []string {
- return ModelList
- }
- func (a *Adaptor) GetChannelName() string {
- return ChannelName
- }
|