mirror of
https://github.com/mudler/LocalAI.git
synced 2025-06-13 04:28:10 +00:00
No need to set 0 for default context anymore
This commit is contained in:
2
api.go
2
api.go
@ -10,7 +10,7 @@ import (
|
|||||||
func api(model, listenAddr string, threads int) error {
|
func api(model, listenAddr string, threads int) error {
|
||||||
app := fiber.New()
|
app := fiber.New()
|
||||||
|
|
||||||
l, err := llama.New(model, 0)
|
l, err := llama.New(model)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
2
main.go
2
main.go
@ -179,7 +179,7 @@ echo "An Alpaca (Vicugna pacos) is a domesticated species of South American came
|
|||||||
fmt.Println("Templating the input failed:", err.Error())
|
fmt.Println("Templating the input failed:", err.Error())
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
l, err := llama.New(ctx.String("model"), 0)
|
l, err := llama.New(ctx.String("model"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("Loading the model failed:", err.Error())
|
fmt.Println("Loading the model failed:", err.Error())
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
|
Reference in New Issue
Block a user