rename to llamagate

This commit is contained in:
Benson Wong
2024-10-04 11:09:36 -07:00
parent aaca9d889b
commit 844615bfcc
2 changed files with 3 additions and 3 deletions

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/mostlygeek/go-llama-cpp-proxy
module github.com/mostlygeek/llamagate
go 1.23.0

View File

@@ -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)