diff --git a/space_flow/src/controllers/NodesServices/index.ts b/space_flow/src/controllers/NodesServices/index.ts index 129be7a7d..28403741f 100644 --- a/space_flow/src/controllers/NodesServices/index.ts +++ b/space_flow/src/controllers/NodesServices/index.ts @@ -1,10 +1,10 @@ import axios from "axios"; export async function getAll() { - return await axios.get("http://localhost:8000/all"); + return await axios.get("http://localhost:5003/"); } export async function sendAll(data) { console.log(data); - return await axios.post("http://localhost:8000/predict", data); + return await axios.post("http://localhost:5003/predict", data); }