|
import { defaultGenerationConfig } from "$lib/components/InferencePlayground/generationConfigSettings"; |
|
import { models } from "$lib/stores/models"; |
|
import { |
|
PipelineTag, |
|
type Conversation, |
|
type ConversationMessage, |
|
type ModelWithTokenizer, |
|
type Project, |
|
type Session, |
|
} from "$lib/types"; |
|
import { safeParse } from "$lib/utils/json"; |
|
import { getTrending } from "$lib/utils/model"; |
|
import { get, writable } from "svelte/store"; |
|
import typia from "typia"; |
|
|
|
const LOCAL_STORAGE_KEY = "hf_inference_playground_session"; |
|
|
|
const startMessageUser: ConversationMessage = { role: "user", content: "" }; |
|
const systemMessage: ConversationMessage = { |
|
role: "system", |
|
content: "", |
|
}; |
|
|
|
const emptyModel: ModelWithTokenizer = { |
|
_id: "", |
|
inferenceProviderMapping: [], |
|
pipeline_tag: PipelineTag.TextGeneration, |
|
trendingScore: 0, |
|
tags: ["text-generation"], |
|
id: "", |
|
tokenizerConfig: {}, |
|
config: { |
|
architectures: [] as string[], |
|
model_type: "", |
|
tokenizer_config: {}, |
|
}, |
|
}; |
|
|
|
function createSessionStore() { |
|
function getDefaults() { |
|
const $models = get(models); |
|
const featured = getTrending($models); |
|
const defaultModel = featured[0] ?? $models[0] ?? emptyModel; |
|
|
|
|
|
const searchParams = new URLSearchParams(window.location.search); |
|
const searchProviders = searchParams.getAll("provider"); |
|
const searchModelIds = searchParams.getAll("modelId"); |
|
const modelsFromSearch = searchModelIds.map(id => $models.find(model => model.id === id)).filter(Boolean); |
|
|
|
const defaultConversation: Conversation = { |
|
model: defaultModel, |
|
config: { ...defaultGenerationConfig }, |
|
messages: [{ ...startMessageUser }], |
|
systemMessage, |
|
streaming: true, |
|
}; |
|
|
|
const defaultProject: Project = { |
|
name: "Default project", |
|
id: crypto.randomUUID(), |
|
conversations: [defaultConversation], |
|
}; |
|
|
|
return { defaultProject, defaultConversation }; |
|
} |
|
|
|
const store = writable<Session>(undefined, set => { |
|
const { defaultConversation, defaultProject } = getDefaults(); |
|
|
|
|
|
let savedSession: Session = { |
|
projects: [defaultProject], |
|
activeProjectId: defaultProject.id, |
|
}; |
|
|
|
const savedData = localStorage.getItem(LOCAL_STORAGE_KEY); |
|
if (savedData) { |
|
const parsed = safeParse(savedData); |
|
const res = typia.validate<Session>(parsed); |
|
if (res.success) savedSession = parsed; |
|
else localStorage.setItem(LOCAL_STORAGE_KEY, JSON.stringify(savedSession)); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set(savedSession); |
|
}); |
|
|
|
|
|
const update: typeof store.update = cb => { |
|
|
|
|
|
|
|
|
|
|
|
store.update($s => { |
|
const s = cb($s); |
|
|
|
|
|
try { |
|
localStorage.setItem(LOCAL_STORAGE_KEY, JSON.stringify(s)); |
|
} catch (e) { |
|
console.error("Failed to save session to localStorage:", e); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return s; |
|
}); |
|
}; |
|
|
|
|
|
const set: typeof store.set = (...args) => { |
|
update(_ => args[0]); |
|
}; |
|
|
|
|
|
function clearSavedSession() { |
|
localStorage.removeItem(LOCAL_STORAGE_KEY); |
|
} |
|
|
|
function addProject(name: string) { |
|
const { defaultConversation } = getDefaults(); |
|
update(s => { |
|
const project: Project = { |
|
name, |
|
id: crypto.randomUUID(), |
|
conversations: [defaultConversation], |
|
}; |
|
|
|
return { ...s, projects: [...s.projects, project], activeProjectId: project.id }; |
|
}); |
|
} |
|
|
|
function deleteProject(id: string) { |
|
update(s => { |
|
const projects = s.projects.filter(p => p.id !== id); |
|
if (projects.length === 0) { |
|
const { defaultProject } = getDefaults(); |
|
return { ...s, projects: [defaultProject], activeProjectId: defaultProject.id }; |
|
} |
|
const currProject = projects.find(p => p.id === s.activeProjectId); |
|
return { ...s, projects, activeProjectId: currProject?.id ?? projects[0]?.id! }; |
|
}); |
|
} |
|
|
|
return { ...store, set, update, clearSavedSession, addProject, deleteProject }; |
|
} |
|
|
|
export const session = createSessionStore(); |
|
|
|
export function getActiveProject(s: Session) { |
|
return s.projects.find(p => p.id === s.activeProjectId) ?? s.projects[0]!; |
|
} |
|
|