Rebrand project

This commit is contained in:
2026-03-02 14:04:05 +00:00
parent f79af84afb
commit 8ceb831e84
13 changed files with 32 additions and 32 deletions

View File

@@ -4,7 +4,7 @@ import (
"sync"
"time"
"github.com/yourusername/go-llm-gateway/internal/api"
"github.com/ajac-zero/latticelm/internal/api"
)
// Store defines the interface for conversation storage backends.

View File

@@ -5,7 +5,7 @@ import (
"encoding/json"
"time"
"github.com/yourusername/go-llm-gateway/internal/api"
"github.com/ajac-zero/latticelm/internal/api"
)
// sqlDialect holds driver-specific SQL statements.

View File

@@ -7,8 +7,8 @@ import (
"github.com/anthropics/anthropic-sdk-go"
"github.com/anthropics/anthropic-sdk-go/option"
"github.com/yourusername/go-llm-gateway/internal/api"
"github.com/yourusername/go-llm-gateway/internal/config"
"github.com/ajac-zero/latticelm/internal/api"
"github.com/ajac-zero/latticelm/internal/config"
)
const Name = "anthropic"

View File

@@ -7,8 +7,8 @@ import (
"github.com/google/uuid"
"google.golang.org/genai"
"github.com/yourusername/go-llm-gateway/internal/api"
"github.com/yourusername/go-llm-gateway/internal/config"
"github.com/ajac-zero/latticelm/internal/api"
"github.com/ajac-zero/latticelm/internal/config"
)
const Name = "google"

View File

@@ -8,8 +8,8 @@ import (
"github.com/openai/openai-go/azure"
"github.com/openai/openai-go/option"
"github.com/yourusername/go-llm-gateway/internal/api"
"github.com/yourusername/go-llm-gateway/internal/config"
"github.com/ajac-zero/latticelm/internal/api"
"github.com/ajac-zero/latticelm/internal/config"
)
const Name = "openai"

View File

@@ -4,11 +4,11 @@ import (
"context"
"fmt"
"github.com/yourusername/go-llm-gateway/internal/api"
"github.com/yourusername/go-llm-gateway/internal/config"
anthropicprovider "github.com/yourusername/go-llm-gateway/internal/providers/anthropic"
googleprovider "github.com/yourusername/go-llm-gateway/internal/providers/google"
openaiprovider "github.com/yourusername/go-llm-gateway/internal/providers/openai"
"github.com/ajac-zero/latticelm/internal/api"
"github.com/ajac-zero/latticelm/internal/config"
anthropicprovider "github.com/ajac-zero/latticelm/internal/providers/anthropic"
googleprovider "github.com/ajac-zero/latticelm/internal/providers/google"
openaiprovider "github.com/ajac-zero/latticelm/internal/providers/openai"
)
// Provider represents a unified interface that each LLM provider must implement.

View File

@@ -10,9 +10,9 @@ import (
"github.com/google/uuid"
"github.com/yourusername/go-llm-gateway/internal/api"
"github.com/yourusername/go-llm-gateway/internal/conversation"
"github.com/yourusername/go-llm-gateway/internal/providers"
"github.com/ajac-zero/latticelm/internal/api"
"github.com/ajac-zero/latticelm/internal/conversation"
"github.com/ajac-zero/latticelm/internal/providers"
)
// GatewayServer hosts the Open Responses API for the gateway.