mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
22 lines
370 B
Go
22 lines
370 B
Go
|
//go:build !p2p
|
||
|
// +build !p2p
|
||
|
|
||
|
package p2p
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func GenerateToken() string {
|
||
|
return "not implemented"
|
||
|
}
|
||
|
|
||
|
func LLamaCPPRPCServerDiscoverer(ctx context.Context, token string) error {
|
||
|
return fmt.Errorf("not implemented")
|
||
|
}
|
||
|
|
||
|
func BindLLamaCPPWorker(ctx context.Context, host, port, token string) error {
|
||
|
return fmt.Errorf("not implemented")
|
||
|
}
|