Przeglądaj źródła

修改版本信息

[plg137200.] 1 rok temu
rodzic
commit
3bbaeb9399
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/renderer/components/Smart1.vue

+ 2 - 2
src/renderer/components/Smart1.vue

@@ -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,
       })