Files
new-api/relay/channel/ali/text_test.go
T

60 lines
1.1 KiB
Go

package ali
import (
"testing"
"github.com/QuantumNous/new-api/relaykit/dto"
"github.com/samber/lo"
"github.com/stretchr/testify/assert"
)
func TestRequestOpenAI2AliTopP(t *testing.T) {
tests := []struct {
name string
topP *float64
want *float64
}{
{
name: "omitted top_p is not injected",
topP: nil,
want: nil,
},
{
name: "in-range top_p is preserved",
topP: lo.ToPtr(0.8),
want: lo.ToPtr(0.8),
},
{
name: "top_p of 1 is clamped to two decimals",
topP: lo.ToPtr(1.0),
want: lo.ToPtr(0.99),
},
{
name: "top_p above 1 is clamped to two decimals",
topP: lo.ToPtr(1.5),
want: lo.ToPtr(0.99),
},
{
name: "top_p of 0 is clamped to two decimals",
topP: lo.ToPtr(0.0),
want: lo.ToPtr(0.01),
},
{
name: "negative top_p is clamped to two decimals",
topP: lo.ToPtr(-0.3),
want: lo.ToPtr(0.01),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := requestOpenAI2Ali(dto.GeneralOpenAIRequest{
Model: "qwen-plus",
TopP: tt.topP,
}, "qwen-plus")
assert.Equal(t, tt.want, got.TopP)
})
}
}