#Error 429 for a small request
2 messages · Page 1 of 1 (latest)
this is the request data and config for the request:
const requestData = {
prompt: "Please summarize the following text: " + textToSummarize,
max_tokens: 200,
temperature: 0.5,
stop: "\n"
};
const config = {
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${apiKey}`
},
};