Request: DOI
#9
by
etanefo
- opened
I struggling to gain access to the "medalpaca/medalpaca-7b" model.
I am making the following API call using AJAX call and a valid token I obtained from Hugging Face. I get the error message 'HTTP error! status: 403'.
How can I fix this issue?
My code works with I use other publicly available models.
CODE
const response = await fetch(API_URL, {
method: 'POST',
headers: headers,
body: JSON.stringify(data),
});