mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-04-19 07:07:27 +00:00
15 lines
528 B
Go
15 lines
528 B
Go
package service
|
|
|
|
import (
|
|
"github.com/QuantumNous/new-api/service/openaicompat"
|
|
"github.com/QuantumNous/new-api/setting/model_setting"
|
|
)
|
|
|
|
func ShouldChatCompletionsUseResponsesPolicy(policy model_setting.ChatCompletionsToResponsesPolicy, channelID int, model string) bool {
|
|
return openaicompat.ShouldChatCompletionsUseResponsesPolicy(policy, channelID, model)
|
|
}
|
|
|
|
func ShouldChatCompletionsUseResponsesGlobal(channelID int, model string) bool {
|
|
return openaicompat.ShouldChatCompletionsUseResponsesGlobal(channelID, model)
|
|
}
|