Browse Source

修改文本

[plg137200.] 1 year ago
parent
commit
54737f878e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/renderer/components/Smart1.vue

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

@@ -758,7 +758,7 @@ export default {
       //http://aagvs5.natappfree.cc/sentiment
       let that = this;
       axios
-        .post(`http://192.168.138.142:9999/sentiment`, { text: val })
+        .post(`http://127.0.0.1:9999/sentiment`, { text: val })
         .then((res) => {
           console.log(res.data.sentiment);
           if (
@@ -822,7 +822,7 @@ export default {
       //http://ray-thunder.natapp1.cc/chat
       HTTP_AXIOS({
         method: "post",
-        url: `http://192.168.138.142:9998/chat`,
+        url: `http://127.0.0.1:9998/chat`,
         data: { text: list },
         timeout: 300000,
       })