|
@@ -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()
|
|
|
|
|
|
|