You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
426 B
23 lines
426 B
1 year ago
|
package main
|
||
|
|
||
|
// Note: this is started internally by LocalAI and a server is allocated for each model
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
|
||
|
grpc "github.com/go-skynet/LocalAI/pkg/grpc"
|
||
|
bert "github.com/go-skynet/LocalAI/pkg/grpc/llm/bert"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
addr = flag.String("addr", "localhost:50051", "the address to connect to")
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
flag.Parse()
|
||
|
|
||
|
if err := grpc.StartServer(*addr, &bert.Embeddings{}); err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|