you can now UPLAD IMAGES AND VIDS!!! in the quetions of kahootlone/quizzlet

This commit is contained in:
RezHackXYZ 2025-05-31 18:13:50 +05:30
parent 5f53e923d0
commit de7e3da139
29 changed files with 158 additions and 96 deletions

View file

@ -1,5 +1,6 @@
import { questions } from "./GameCreateData.svelte.js";
import { AiPrompts } from "$lib/config.js";
import toast from "svelte-5-french-toast";
export function GenerateOptionsUsingAI(index) {
fetch("https://ai.hackclub.com/chat/completions", {
@ -26,9 +27,9 @@ export function GenerateOptionsUsingAI(index) {
questions.v[index].name = question;
})
.catch((error) => {
alert("Error:" + error);
toast.error("Error:" + error);
return;
});
alert("added!");
toast.success("added!");
}