mirror of
https://github.com/langgenius/dify.git
synced 2025-06-27 05:30:04 +00:00
fix: update text_to_audio method to send data as JSON (#20663)
This commit is contained in:
parent
3367d4258d
commit
837f769960
@ -47,7 +47,7 @@ class DifyClient:
|
||||
|
||||
def text_to_audio(self, text: str, user: str, streaming: bool = False):
|
||||
data = {"text": text, "user": user, "streaming": streaming}
|
||||
return self._send_request("POST", "/text-to-audio", data=data)
|
||||
return self._send_request("POST", "/text-to-audio", json=data)
|
||||
|
||||
def get_meta(self, user):
|
||||
params = {"user": user}
|
||||
|
Loading…
x
Reference in New Issue
Block a user