Pārlūkot izejas kodu

add WorkflowClient.get_result, increase version number (#8435)

Co-authored-by: wangying <wangying@xkool.org>
Ying Wang 7 mēneši atpakaļ
vecāks
revīzija
fa1af8e47b

+ 3 - 0
sdks/python-client/dify_client/client.py

@@ -131,3 +131,6 @@ class WorkflowClient(DifyClient):
     def stop(self, task_id, user):
         data = {"user": user}
         return self._send_request("POST", f"/workflows/tasks/{task_id}/stop", data)
+
+    def get_result(self, workflow_run_id):
+        return self._send_request("GET", f"/workflows/run/{workflow_run_id}")

+ 1 - 1
sdks/python-client/setup.py

@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
 
 setup(
     name="dify-client",
-    version="0.1.10",
+    version="0.1.11",
     author="Dify",
     author_email="hello@dify.ai",
     description="A package for interacting with the Dify Service-API",