RWKV-Runner/backend-golang/rwkv.go

53 lines
1.3 KiB
Go
Raw Normal View History

2023-05-06 23:39:23 +08:00
package backend_golang
import (
2023-05-20 23:34:33 +08:00
"errors"
2023-05-06 23:39:23 +08:00
"os/exec"
2023-05-17 11:39:00 +08:00
"strconv"
2023-05-06 23:39:23 +08:00
)
2023-05-20 23:34:33 +08:00
func (a *App) StartServer(port int) (string, error) {
python, err := GetPython()
2023-05-17 11:39:00 +08:00
if err != nil {
return "", err
}
2023-05-20 23:34:33 +08:00
return Cmd(python, "./backend-python/main.py", strconv.Itoa(port))
}
func (a *App) ConvertModel(modelPath string, strategy string, outPath string) (string, error) {
python, err := GetPython()
2023-05-06 23:39:23 +08:00
if err != nil {
2023-05-13 20:15:18 +08:00
return "", err
2023-05-06 23:39:23 +08:00
}
2023-05-20 23:34:33 +08:00
return Cmd(python, "./backend-python/convert_model.py", "--in", modelPath, "--out", outPath, "--strategy", strategy)
2023-05-06 23:39:23 +08:00
}
2023-05-17 21:20:41 +08:00
2023-05-20 23:34:33 +08:00
func (a *App) DepCheck() error {
python, err := GetPython()
if err != nil {
return err
}
out, err := exec.Command(python, "./backend-python/dep_check.py").CombinedOutput()
if err != nil {
return errors.New("DepCheck Error: " + string(out))
}
return nil
2023-05-17 23:27:52 +08:00
}
2023-05-20 23:34:33 +08:00
func (a *App) InstallPyDep() (string, error) {
python, err := GetPython()
if err != nil {
return "", err
}
_, err = Cmd(python, "./backend-python/get-pip.py")
if err != nil {
return "", err
}
ChangeFileLine("./py310/python310._pth", 3, "Lib\\site-packages")
_, err = Cmd(python, "-m", "pip", "install", "torch", "torchvision", "torchaudio", "--index-url", "https://download.pytorch.org/whl/cu117")
if err != nil {
return "", err
}
return Cmd(python, "-m", "pip", "install", "-r", "./backend-python/requirements_versions.txt")
2023-05-17 21:20:41 +08:00
}