mirror of
https://github.com/mudler/LocalAI.git
synced 2026-04-01 21:53:01 -04:00
* feat(realtime): WebRTC support Signed-off-by: Richard Palethorpe <io@richiejp.com> * fix(tracing): Show full LLM opts and deltas Signed-off-by: Richard Palethorpe <io@richiejp.com> --------- Signed-off-by: Richard Palethorpe <io@richiejp.com>
17 lines
262 B
Go
17 lines
262 B
Go
package main
|
|
|
|
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, &Opus{}); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|