소스 검색

change test env from get to post

ming 3 년 전
부모
커밋
21b3957a15
1개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 6 4
      api/main.py

+ 6 - 4
api/main.py

@@ -683,10 +683,12 @@ def call_voice(text):
     src_path = '/home/ming/AI_Anchor/OpenshotService/speech.mp3'
     shutil.copy(src_path,'/home/ming/speech.mp3')
     os.remove(src_path)
-    
-@app.get("/make_voice")
-async def make_voice(text):
-    x = threading.Thread(target=call_voice, args=(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.start()