Files
LocalAGI/webui/collections_backend.go
Ettore Di Giacinto 5a27c471ca chore: refactoring to make it importable
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
2026-03-06 16:49:48 +01:00

13 lines
412 B
Go

package webui
import (
"github.com/mudler/LocalAGI/webui/collections"
)
// Re-export types from the collections sub-package so existing webui code continues to work.
type CollectionSearchResult = collections.SearchResult
type CollectionSourceInfo = collections.SourceInfo
type CollectionsBackend = collections.Backend
type CollectionsState = collections.State
type CollectionList = collections.CollectionList