Spaces:
Running
Running
Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -74,7 +74,7 @@ Extract the CSV file (file1) from the ZIP archive (observations), clean and filt
|
|
74 |
const model = "meta-llama/Llama-3.1-70B-Instruct";
|
75 |
|
76 |
// URL del archivo ZIP en Hugging Face
|
77 |
-
const fileUrl = "https://huggingface.co/
|
78 |
|
79 |
// Manejar el envío del formulario
|
80 |
submitBtn.addEventListener("click", async () => {
|
@@ -94,7 +94,7 @@ Extract the CSV file (file1) from the ZIP archive (observations), clean and filt
|
|
94 |
user_input: userInput,
|
95 |
max_new_tokens: maxNewTokens,
|
96 |
model: model,
|
97 |
-
files: [new File([fileBlob], "
|
98 |
});
|
99 |
|
100 |
// Mostrar los resultados
|
|
|
74 |
const model = "meta-llama/Llama-3.1-70B-Instruct";
|
75 |
|
76 |
// URL del archivo ZIP en Hugging Face
|
77 |
+
const fileUrl = "https://huggingface.co/your-username/your-space-name/resolve/main/observations.zip";
|
78 |
|
79 |
// Manejar el envío del formulario
|
80 |
submitBtn.addEventListener("click", async () => {
|
|
|
94 |
user_input: userInput,
|
95 |
max_new_tokens: maxNewTokens,
|
96 |
model: model,
|
97 |
+
files: [new File([fileBlob], "observations.zip")], // Convertir el blob en un objeto File
|
98 |
});
|
99 |
|
100 |
// Mostrar los resultados
|