From 043399dd07d3a9981348fa7663184cb3583a5c9b Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Tue, 23 May 2023 00:06:13 +0200 Subject: [PATCH] fix: re-enable start API message (#349) Signed-off-by: mudler --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index c52399e..b5105fe 100644 --- a/main.go +++ b/main.go @@ -108,6 +108,7 @@ It uses llama.cpp, ggml and gpt4all as backend with golang c bindings. api.WithDebug(ctx.Bool("debug")), api.WithImageDir(ctx.String("image-path")), api.WithF16(ctx.Bool("f16")), + api.WithDisableMessage(false), api.WithCors(ctx.Bool("cors")), api.WithCorsAllowOrigins(ctx.String("cors-allow-origins")), api.WithThreads(ctx.Int("threads")),