@acceptable-kangaroo-64719
try {
const response = await axios.post(
'FLOWISE Hosted in Render link',
{ question: workflow.questionFrame },
{
headers: { Authorization: 'Bearer TOKEN' }
}
)
workflow.aiResponse = await response.data
} catch (error) {
// Handle any errors that might occur during the API request
console.error('Error:', error.message)
}