mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
cc060a283d
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
24 lines
418 B
Go
24 lines
418 B
Go
package main
|
|
|
|
// Note: this is started internally by LocalAI and a server is allocated for each model
|
|
|
|
import (
|
|
"flag"
|
|
|
|
tts "github.com/go-skynet/LocalAI/pkg/backend/tts"
|
|
|
|
grpc "github.com/go-skynet/LocalAI/pkg/grpc"
|
|
)
|
|
|
|
var (
|
|
addr = flag.String("addr", "localhost:50051", "the address to connect to")
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
if err := grpc.StartServer(*addr, &tts.Piper{}); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|