57 lines
1.8 KiB
Go
57 lines
1.8 KiB
Go
package codex
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/QuantumNous/new-api/constant"
|
|
relaycommon "github.com/QuantumNous/new-api/relay/common"
|
|
relayconstant "github.com/QuantumNous/new-api/relay/constant"
|
|
"github.com/QuantumNous/new-api/relaykit/dto"
|
|
"github.com/samber/lo"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestGetRequestURLAlphaSearch(t *testing.T) {
|
|
adaptor := &Adaptor{}
|
|
info := &relaycommon.RelayInfo{
|
|
ChannelMeta: &relaycommon.ChannelMeta{
|
|
ChannelType: constant.ChannelTypeCodex,
|
|
ChannelBaseUrl: "https://chatgpt.com",
|
|
},
|
|
RelayMode: relayconstant.RelayModeAlphaSearch,
|
|
}
|
|
|
|
url, err := adaptor.GetRequestURL(info)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "https://chatgpt.com/backend-api/codex/alpha/search", url)
|
|
}
|
|
|
|
// The Codex backend rejects these fields, so the adaptor clears them rather
|
|
// than forwarding what the client sent.
|
|
func TestConvertOpenAIResponsesRequestDropsPenalties(t *testing.T) {
|
|
adaptor := &Adaptor{}
|
|
info := &relaycommon.RelayInfo{
|
|
ChannelMeta: &relaycommon.ChannelMeta{ChannelType: constant.ChannelTypeCodex},
|
|
RelayMode: relayconstant.RelayModeResponses,
|
|
}
|
|
|
|
converted, err := adaptor.ConvertOpenAIResponsesRequest(nil, info, dto.OpenAIResponsesRequest{
|
|
Model: "gpt-5-codex",
|
|
Input: json.RawMessage(`"hello"`),
|
|
MaxOutputTokens: lo.ToPtr(uint(128)),
|
|
Temperature: lo.ToPtr(1.0),
|
|
FrequencyPenalty: json.RawMessage(`1.5`),
|
|
PresencePenalty: json.RawMessage(`1.5`),
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
request, ok := converted.(dto.OpenAIResponsesRequest)
|
|
require.True(t, ok)
|
|
assert.Nil(t, request.MaxOutputTokens)
|
|
assert.Nil(t, request.Temperature)
|
|
assert.Nil(t, request.FrequencyPenalty)
|
|
assert.Nil(t, request.PresencePenalty)
|
|
}
|