Changeset 0.32.0 (#206)

This commit is contained in:
2026-03-19 18:50:27 +00:00
parent 6668e546fe
commit b1266b0d7c
283 changed files with 2187 additions and 1055 deletions

View File

@@ -8,11 +8,11 @@ import (
"strings"
"time"
"git.gobha.me/xcaliber/chat-switchboard/models"
"git.gobha.me/xcaliber/chat-switchboard/providers"
"git.gobha.me/xcaliber/chat-switchboard/roles"
"git.gobha.me/xcaliber/chat-switchboard/store"
"git.gobha.me/xcaliber/chat-switchboard/treepath"
"chat-switchboard/models"
"chat-switchboard/providers"
"chat-switchboard/roles"
"chat-switchboard/store"
"chat-switchboard/treepath"
)
// ── Request / Result ────────────────────────

View File

@@ -6,9 +6,9 @@ import (
"testing"
"time"
"git.gobha.me/xcaliber/chat-switchboard/database"
"git.gobha.me/xcaliber/chat-switchboard/models"
postgres "git.gobha.me/xcaliber/chat-switchboard/store/postgres"
"chat-switchboard/database"
"chat-switchboard/models"
postgres "chat-switchboard/store/postgres"
)
// ── Helpers ─────────────────────────────────

View File

@@ -1,7 +1,7 @@
package compaction
import (
"git.gobha.me/xcaliber/chat-switchboard/treepath"
"chat-switchboard/treepath"
)
// ── Token Estimation ────────────────────────

View File

@@ -3,7 +3,7 @@ package compaction
import (
"testing"
"git.gobha.me/xcaliber/chat-switchboard/treepath"
"chat-switchboard/treepath"
)
func TestEstimateTokens(t *testing.T) {

View File

@@ -6,10 +6,10 @@ import (
"sync"
"time"
"git.gobha.me/xcaliber/chat-switchboard/models"
"git.gobha.me/xcaliber/chat-switchboard/roles"
"git.gobha.me/xcaliber/chat-switchboard/store"
"git.gobha.me/xcaliber/chat-switchboard/treepath"
"chat-switchboard/models"
"chat-switchboard/roles"
"chat-switchboard/store"
"chat-switchboard/treepath"
)
// ── Defaults ────────────────────────────────

View File

@@ -4,7 +4,7 @@ import (
"os"
"testing"
"git.gobha.me/xcaliber/chat-switchboard/database"
"chat-switchboard/database"
)
func TestMain(m *testing.M) {