Spaces:
Runtime error
Runtime error
File size: 297 Bytes
adca714 |
1 2 3 4 5 6 7 8 9 10 11 |
// apiClientAiService
// analyze-expense
import { apiClientAiService } from "./api.service";
import FormData from 'form-data';
export const parseInvoice = async (params: FormData) => {
const response = await apiClientAiService.post(`/analyze-expense`, params );
return response.data;
};
|