Ver Fonte

change test env from get to post

ming há 3 anos atrás
pai
commit
aa23c34a37
1 ficheiros alterados com 4 adições e 4 exclusões
  1. 4 4
      api/main.py

+ 4 - 4
api/main.py

@@ -677,6 +677,9 @@ def gen_avatar(name_hash, imgurl):
         statement = 'UPDATE avatar_service_status SET status = 0 WHERE id=1;'  #only one row in this table, which id 1 one
         db.query(statement)
 def call_voice(text):
+    print(text)
+    print(len(text))
+    print(type(text))
     c = rpyc.connect("localhost", 8868)
     c._config['sync_request_timeout'] = None
     remote_svc = c.root
@@ -689,10 +692,7 @@ class text_in(BaseModel):
     text: str
 @app.post("/make_voice")
 async def make_voice(in_text:text_in):
-    print(in_text.text)
-    print(len(in_text.text))
-    print(type(in_text.text))
-    x = threading.Thread(target=call_voice, args=(in_text.text,))
+    x = threading.Thread(target=call_voice, args=(in_text.text))
     x.start()