Flowise/packages/ui/src/api/prediction.js

8 lines
183 B
JavaScript

import client from './client'
const sendMessageAndGetPrediction = (id, input) => client.post(`/internal-prediction/${id}`, input)
export default {
sendMessageAndGetPrediction
}