ai-tube / src /app /state /localStorageKeys.ts
jbilcke-hf's picture
jbilcke-hf HF staff
work on HF login
16891a6
raw
history blame
No virus
330 Bytes
import { Settings } from "@/types/general"
export const localStorageKeys: Record<keyof Settings, string> = {
// important: prefix with AI_TUBE to avoid collisions when running the app on localhost
huggingfaceApiKey: "AI_TUBE_CONF_AUTH_HF_API_TOKEN",
huggingfaceTemporaryApiKey: "AI_TUBE_CONF_AUTH_TEMPORARY_HF_API_TOKEN"
}