Spaces:
Runtime error
Runtime error
const axios = require("axios"); | |
const apiUrl = `http://de-fsn-4.halex.gg:25287/api`; | |
const postData = { | |
prompt: "Wassup my homie" | |
}; | |
axios.post(apiUrl, postData) | |
.then(response => { | |
console.log("Response from API:", response.data); | |
}) | |
.catch(error => { | |
console.error("Error:", error.message); | |
}); |