From 844615bfcc47fdb337b93bed85908666201d51e2 Mon Sep 17 00:00:00 2001 From: Benson Wong Date: Fri, 4 Oct 2024 11:09:36 -0700 Subject: [PATCH] rename to llamagate --- go.mod | 2 +- llama-proxy.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index ba48cea..967ebd4 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/mostlygeek/go-llama-cpp-proxy +module github.com/mostlygeek/llamagate go 1.23.0 diff --git a/llama-proxy.go b/llama-proxy.go index 098d6ea..40d682d 100644 --- a/llama-proxy.go +++ b/llama-proxy.go @@ -6,7 +6,7 @@ import ( "net/http" "os" - "github.com/mostlygeek/go-llama-cpp-proxy/proxy" + "github.com/mostlygeek/llamagate/proxy" ) func main() { @@ -25,7 +25,7 @@ func main() { proxyManager := proxy.New(config) http.HandleFunc("/", proxyManager.HandleFunc) - fmt.Println("Proxy server started on " + *listenStr) + fmt.Println("llamagate listening on " + *listenStr) if err := http.ListenAndServe(*listenStr, nil); err != nil { fmt.Printf("Error starting server: %v\n", err) os.Exit(1)