1
2
3
4
5
6
7
8
9
10
export async function myApi(name) {
const got = await import("got");
const res = await got.post("http://34.87.31.113:3000/infer", {
json: {
input: [["0", 24], ["a", 28], ["b", 68], ["0", 56], ["c", 1], ["d", 55]],
direction: "vertical",
},
}).json();
return res;
}