mirror of
https://github.com/langgenius/dify.git
synced 2024-11-15 19:22:36 +08:00
allow custom base_url of dify api server (#6510)
This commit is contained in:
parent
a6350daa02
commit
5b89b6fe2d
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue
Block a user