C2MV commited on
Commit
7a51e3f
·
verified ·
1 Parent(s): 1adab2b

Update index.html

Browse files
Files changed (1) hide show
  1. 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/datasets/C2MV/RIMU/resolve/main/observations.zip";
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], "https://huggingface.co/datasets/C2MV/RIMU/resolve/main/observations.zip")], // Convertir el blob en un objeto File
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