chore: rebrand project to GopherGate
Some checks failed
CI / Lint (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Build (push) Has been cancelled

Updated all naming from LLM Proxy to GopherGate. Implemented new CSS-based branding and updated Go module/binary naming.
This commit is contained in:
2026-03-19 13:37:05 -04:00
parent 0ce5f4f490
commit 03dca998df
25 changed files with 195 additions and 169 deletions

View File

@@ -4,8 +4,8 @@ import (
"log"
"strings"
"llm-proxy/internal/db"
"llm-proxy/internal/models"
"gophergate/internal/db"
"gophergate/internal/models"
"github.com/gin-gonic/gin"
)

View File

@@ -8,8 +8,8 @@ import (
"io"
"strings"
"llm-proxy/internal/config"
"llm-proxy/internal/models"
"gophergate/internal/config"
"gophergate/internal/models"
"github.com/go-resty/resty/v2"
)

View File

@@ -5,8 +5,8 @@ import (
"encoding/json"
"fmt"
"llm-proxy/internal/config"
"llm-proxy/internal/models"
"gophergate/internal/config"
"gophergate/internal/models"
"github.com/go-resty/resty/v2"
)

View File

@@ -5,8 +5,8 @@ import (
"encoding/json"
"fmt"
"llm-proxy/internal/config"
"llm-proxy/internal/models"
"gophergate/internal/config"
"gophergate/internal/models"
"github.com/go-resty/resty/v2"
)

View File

@@ -7,7 +7,7 @@ import (
"io"
"strings"
"llm-proxy/internal/models"
"gophergate/internal/models"
)
// MessagesToOpenAIJSON converts unified messages to OpenAI-compatible JSON, including tools and images.

View File

@@ -6,8 +6,8 @@ import (
"fmt"
"strings"
"llm-proxy/internal/config"
"llm-proxy/internal/models"
"gophergate/internal/config"
"gophergate/internal/models"
"github.com/go-resty/resty/v2"
)

View File

@@ -3,7 +3,7 @@ package providers
import (
"context"
"llm-proxy/internal/models"
"gophergate/internal/models"
)
type Provider interface {

View File

@@ -8,8 +8,8 @@ import (
"strings"
"time"
"llm-proxy/internal/db"
"llm-proxy/internal/models"
"gophergate/internal/db"
"gophergate/internal/models"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
"golang.org/x/crypto/bcrypt"

View File

@@ -4,7 +4,7 @@ import (
"log"
"time"
"llm-proxy/internal/db"
"gophergate/internal/db"
)
type RequestLog struct {

View File

@@ -8,12 +8,12 @@ import (
"strings"
"time"
"llm-proxy/internal/config"
"llm-proxy/internal/db"
"llm-proxy/internal/middleware"
"llm-proxy/internal/models"
"llm-proxy/internal/providers"
"llm-proxy/internal/utils"
"gophergate/internal/config"
"gophergate/internal/db"
"gophergate/internal/middleware"
"gophergate/internal/models"
"gophergate/internal/providers"
"gophergate/internal/utils"
"github.com/gin-gonic/gin"
)

View File

@@ -90,7 +90,7 @@ func (s *Server) handleWebSocket(c *gin.Context) {
// Initial message
conn.WriteJSON(gin.H{
"type": "connected",
"message": "Connected to LLM Proxy Dashboard",
"message": "Connected to GopherGate Dashboard",
})
for {

View File

@@ -6,7 +6,7 @@ import (
"log"
"time"
"llm-proxy/internal/models"
"gophergate/internal/models"
"github.com/go-resty/resty/v2"
)