feat: support azure stream_options

This commit is contained in:
CalciumIon
2024-12-26 22:51:06 +08:00
parent 0b1354ed51
commit 62ae46b552
3 changed files with 4 additions and 4 deletions

View File

@@ -106,7 +106,7 @@ func (a *Adaptor) ConvertRequest(c *gin.Context, info *relaycommon.RelayInfo, re
if request == nil {
return nil, errors.New("request is nil")
}
if info.ChannelType != common.ChannelTypeOpenAI {
if info.ChannelType != common.ChannelTypeOpenAI && info.ChannelType != common.ChannelTypeAzure {
request.StreamOptions = nil
}
if strings.HasPrefix(request.Model, "o1") {