const url = "https://www.stack-inference.com/run_deployed_flow?flow_id=64d75946f9672d1a070317f2&org=584fdd5b-f3c3-4be4-9a8f-62787e87b2a1"
const headers = {
  Authorization: "Bearer YOUR API",
  "Content-Type": "application/json"
}
const data = {
  "in-0": workflow.userQuestion
}
const response = await axios.post(url, data, { headers })
if (response.status === 200) {
  workflow.aiResponse = _.get(response, "data.out-0", "")
}