const response = await fetch('https://api.netmind.ai/v1/files', {
method: 'POST',
headers: {
"Authorization": "text",
"Content-Type": "application/json"
},
body: JSON.stringify({
"file_name": "text",
"purpose": "fine-tune"
}),
});
const data = await response.json();