const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://adp.laiye.com/open/agentic_engine/laiye/files/{file_id}/delete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));