* feat(recipes): round-trip local model variants * feat(recipes): add local model selector * feat(recipes): wire selector into model editors * fix(recipes): clear stale model state on relink * feat(recipes): load selected local models for jobs * chore(frontend): simplify biome scripts * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix(recipes): handle local selector edge cases * fix(recipes): polish local model selector behavior * fix(recipes): delay local model restore until terminal runs * fix(recipes): accept resolved default gguf variants --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
export { ChatPage } from "./chat-page";
|
|
export {
|
|
getInferenceStatus,
|
|
listGgufVariants,
|
|
listLocalModels,
|
|
loadModel,
|
|
type LocalModelInfo,
|
|
} from "./api/chat-api";
|
|
export type { GgufVariantDetail } from "./types/api";
|
|
export {
|
|
ChatSettingsPanel,
|
|
defaultInferenceParams,
|
|
type InferenceParams,
|
|
type Preset,
|
|
} from "./chat-settings-sheet";
|
|
export { useChatRuntimeStore } from "./stores/chat-runtime-store";
|
|
export { useChatSearchStore } from "./stores/chat-search-store";
|
|
export { useChatModelRuntime } from "./hooks/use-chat-model-runtime";
|
|
export { ChatSearchDialog } from "./components/chat-search-dialog";
|
|
export { setTrainingCompareHandoff } from "./lib/training-compare-handoff";
|
|
export { clearAllChats, countAllChats } from "./utils/clear-all-chats";
|
|
export { downloadChatExport } from "./utils/export-chat-history";
|
|
export {
|
|
deleteChatItem,
|
|
renameChatItem,
|
|
useChatSidebarItems,
|
|
type SidebarItem,
|
|
} from "./hooks/use-chat-sidebar-items";
|