Spaces:
Runtime error
Runtime error
File size: 4,946 Bytes
1f52d20 8345033 1f52d20 8345033 1f52d20 8345033 1f52d20 8345033 1f52d20 8345033 1f52d20 8345033 1f52d20 8345033 1f52d20 8345033 1f52d20 8345033 1f52d20 8345033 1f52d20 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | const STORAGE_KEY = "my-omni-ai-config";
const ids = ["hfToken", "chatModel", "codeModel", "writerModel", "videoModel", "faceModel"];
const outputs = {
chat: document.getElementById("chatOutput"),
code: document.getElementById("codeOutput"),
writing: document.getElementById("writingOutput"),
video: document.getElementById("videoOutput"),
faceswap: document.getElementById("faceOutput")
};
function loadConfig() {
const cached = JSON.parse(localStorage.getItem(STORAGE_KEY) || "{}");
ids.forEach((id) => {
if (cached[id]) document.getElementById(id).value = cached[id];
});
}
function getConfig() {
return Object.fromEntries(ids.map((id) => [id, document.getElementById(id).value.trim()]));
}
function saveConfig() {
localStorage.setItem(STORAGE_KEY, JSON.stringify(getConfig()));
alert("Config saved to browser");
}
async function hfTextInference(model, prompt, token) {
const res = await fetch(`https://api-inference.huggingface.co/models/${model}`, {
method: "POST",
headers: {
Authorization: `Bearer ${token}`,
"Content-Type": "application/json"
},
body: JSON.stringify({
inputs: prompt,
parameters: {
max_new_tokens: 1024,
temperature: 0.7,
return_full_text: false
}
})
});
if (!res.ok) {
const text = await res.text();
throw new Error(`Model Error: ${res.status} ${text}`);
}
const data = await res.json();
if (Array.isArray(data) && data[0]?.generated_text) return data[0].generated_text;
if (data?.generated_text) return data.generated_text;
return JSON.stringify(data, null, 2);
}
async function hfGenericTask(model, prompt, token) {
const res = await fetch(`https://api-inference.huggingface.co/models/${model}`, {
method: "POST",
headers: {
Authorization: `Bearer ${token}`,
"Content-Type": "application/json"
},
body: JSON.stringify({ inputs: prompt })
});
const text = await res.text();
if (!res.ok) throw new Error(`Task Error: ${res.status} ${text}`);
return text;
}
async function runAction(kind) {
const config = getConfig();
const token = config.hfToken;
if (!token) {
outputs[kind].textContent = "Please enter Hugging Face Token";
return;
}
const promptByKind = {
chat: document.getElementById("chatPrompt").value,
code: document.getElementById("codePrompt").value,
writing: document.getElementById("writingPrompt").value,
video: document.getElementById("videoPrompt").value,
faceswap: document.getElementById("facePrompt").value
};
const modelByKind = {
chat: config.chatModel,
code: config.codeModel,
writing: config.writerModel,
video: config.videoModel,
faceswap: config.faceModel
};
outputs[kind].textContent = "Processing...";
try {
if (["chat", "code", "writing"].includes(kind)) {
const answer = await hfTextInference(modelByKind[kind], promptByKind[kind], token);
outputs[kind].textContent = answer;
} else {
const answer = await hfGenericTask(modelByKind[kind], promptByKind[kind], token);
outputs[kind].textContent = `Task submitted:\n${answer}`;
}
} catch (error) {
outputs[kind].textContent = String(error);
}
}
function bindTabs() {
const tabButtons = document.querySelectorAll(".tab");
const panels = document.querySelectorAll(".tab-panel");
tabButtons.forEach((btn) => {
btn.addEventListener("click", () => {
tabButtons.forEach((x) => x.classList.remove("active"));
panels.forEach((x) => x.classList.remove("active"));
btn.classList.add("active");
document.getElementById(btn.dataset.tab).classList.add("active");
});
});
}
function bindActions() {
document.querySelectorAll("button[data-action]").forEach((btn) => {
btn.addEventListener("click", () => runAction(btn.dataset.action));
});
document.getElementById("saveConfigBtn").addEventListener("click", saveConfig);
}
loadConfig();
bindTabs();
bindActions();
bindDeployCommandHelper();
function bindDeployCommandHelper() {
const output = document.getElementById("deployCmdOutput");
const btn = document.getElementById("copyDeployCmdBtn");
if (!btn || !output) return;
btn.addEventListener("click", async () => {
const spaceName = document.getElementById("spaceName").value.trim();
if (!spaceName) {
output.textContent = "Please enter Space name";
return;
}
const sdk = document.getElementById("spaceSdk")?.value || "static";
const privateFlag = document.getElementById("spacePrivate")?.checked ? " --private" : "";
const cmd = `HF_TOKEN=your_token python scripts/deploy_to_hf_space.py --space ${spaceName} --sdk ${sdk}${privateFlag}`;
output.textContent = cmd;
try {
await navigator.clipboard.writeText(cmd);
output.textContent += "\n\n✅ Command copied!";
} catch {
output.textContent += "\n\n⚠️ Failed to copy.";
}
});
} |