From 8f8d9d6de4d650a32866c09698a1d089493d5c2d Mon Sep 17 00:00:00 2001 From: mudler Date: Mon, 22 May 2023 22:28:41 +0200 Subject: [PATCH] fix: re-enable start API message Signed-off-by: mudler --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index c52399e2..b5105fe7 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")),