mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-26 15:51:05 +00:00
22 lines
356 B
Go
22 lines
356 B
Go
|
package main
|
||
|
|
||
|
// Note: this is started internally by LocalAI and a server is allocated for each model
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
|
||
|
grpc "github.com/mudler/LocalAI/pkg/grpc"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
addr = flag.String("addr", "localhost:50051", "the address to connect to")
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
flag.Parse()
|
||
|
|
||
|
if err := grpc.StartServer(*addr, &VAD{}); err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|