Ver Fonte

change test env from get to post

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

+ 3 - 2
api/main.py

@@ -680,7 +680,7 @@ def call_voice(text):
     print(text)
     print(len(text))
     print(type(text))
-    c = rpyc.connect("localhost", 8868)
+    c = rpyc.connect("localhost", 8858)
     c._config['sync_request_timeout'] = None
     remote_svc = c.root
     my_answer = remote_svc.make_speech(text) # method call
@@ -690,9 +690,10 @@ def call_voice(text):
 
 class text_in(BaseModel):
     text: str
+
 @app.post("/make_voice")
 async def make_voice(in_text:text_in):
-    x = threading.Thread(target=call_voice, args=(in_text.text))
+    x = threading.Thread(target=call_voice, args=(in_text.text,))
     x.start()