|
@@ -650,7 +650,7 @@ export default {
|
|
|
// http://127.0.0.1:9999/sentiment
|
|
|
let that = this;
|
|
|
axios
|
|
|
- .post(`http://192.168.7.142:9999/sentiment`, { text: val })
|
|
|
+ .post(`http://127.0.0.1:9999/sentiment`, { text: val })
|
|
|
.then((res) => {
|
|
|
console.log(res.data.sentiment);
|
|
|
if (
|
|
@@ -698,7 +698,7 @@ export default {
|
|
|
//`http://127.0.0.1:9998/chat`
|
|
|
HTTP_AXIOS({
|
|
|
method: "post",
|
|
|
- url: `http://192.168.7.142:9998/chat`,
|
|
|
+ url: `http://127.0.0.1:9998/chat`,
|
|
|
data: { text: list },
|
|
|
timeout: 300000,
|
|
|
})
|