瀏覽代碼

allow custom base_url of dify api server (#6510)

Jian Yu 9 月之前
父節點
當前提交
5b89b6fe2d
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      sdks/python-client/dify_client/client.py

+ 2 - 2
sdks/python-client/dify_client/client.py

@@ -2,9 +2,9 @@ import requests
 
 
 class DifyClient:
-    def __init__(self, api_key):
+    def __init__(self, api_key, base_url: str = 'https://api.dify.ai/v1'):
         self.api_key = api_key
-        self.base_url = "https://api.dify.ai/v1"
+        self.base_url = base_url
 
     def _send_request(self, method, endpoint, json=None, params=None, stream=False):
         headers = {