|
@@ -37,9 +37,9 @@ type History struct {
|
|
|
}
|
|
|
|
|
|
// GetSessionList 获取会话列表
|
|
|
-func GetSessionList(user, lastId, limit string) (*SessionResponse, error) {
|
|
|
+func GetSessionList(baseUrl, token, user, lastId, limit string) (*SessionResponse, error) {
|
|
|
data := &SessionResponse{}
|
|
|
- resp, err := NewResty().
|
|
|
+ resp, err := NewDifyResty(baseUrl, token).
|
|
|
R().
|
|
|
SetResult(&data).
|
|
|
SetQueryParam("user", user).
|
|
@@ -59,9 +59,9 @@ func GetSessionList(user, lastId, limit string) (*SessionResponse, error) {
|
|
|
}
|
|
|
|
|
|
// GetChatHistory 获取历史会话
|
|
|
-func GetChatHistory(user, conversationId, firstId, limit string) (*HistoryResponse, error) {
|
|
|
+func GetChatHistory(baseUrl, token, user, conversationId, firstId, limit string) (*HistoryResponse, error) {
|
|
|
data := &HistoryResponse{}
|
|
|
- resp, err := NewResty().
|
|
|
+ resp, err := NewDifyResty(baseUrl, token).
|
|
|
R().
|
|
|
SetResult(&data).
|
|
|
SetQueryParam("user", user).
|
|
@@ -82,12 +82,12 @@ func GetChatHistory(user, conversationId, firstId, limit string) (*HistoryRespon
|
|
|
}
|
|
|
|
|
|
// NewResty 实例化dify实例
|
|
|
-func NewResty() *resty.Client {
|
|
|
+func NewDifyResty(baseUrl, token string) *resty.Client {
|
|
|
client := resty.New()
|
|
|
client.SetRetryCount(2).
|
|
|
SetHeader("Content-Type", "application/json").
|
|
|
- SetBaseURL("https://dify.gkscrm.com/v1").
|
|
|
- SetHeader("Authorization", "Bearer "+GetToken())
|
|
|
+ SetBaseURL(baseUrl).
|
|
|
+ SetHeader("Authorization", "Bearer "+token)
|
|
|
|
|
|
return client
|
|
|
}
|