mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-27 04:16:37 +08:00
11 lines
208 B
Go
11 lines
208 B
Go
package doubao
|
|
|
|
import (
|
|
"fmt"
|
|
relaycommon "one-api/relay/common"
|
|
)
|
|
|
|
func GetRequestURL(info *relaycommon.RelayInfo) (string, error) {
|
|
return fmt.Sprintf("%s/api/v3/chat/completions", info.BaseUrl), nil
|
|
}
|