mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-17 16:06:38 +08:00
11 lines
211 B
Go
11 lines
211 B
Go
package minimax
|
|
|
|
import (
|
|
"fmt"
|
|
relaycommon "one-api/relay/common"
|
|
)
|
|
|
|
func GetRequestURL(info *relaycommon.RelayInfo) (string, error) {
|
|
return fmt.Sprintf("%s/v1/text/chatcompletion_v2", info.BaseUrl), nil
|
|
}
|