ai-lab-tube / src /lib /uploadToHuggingFace.ts
jbilcke-hf's picture
jbilcke-hf HF staff
🍿
1f122c3
raw
history blame
No virus
379 Bytes
export async function uploadToHuggingFace(file: File) {
const UPLOAD_URL = 'https://huggingface.co/uploads'
const response = await fetch(UPLOAD_URL, {
method: 'POST',
headers: {
'Content-Type': file.type,
'X-Requested-With': 'XMLHttpRequest',
},
body: file, /// <- File inherits from Blob
})
const url = await response.text()
return url
}