|
@@ -36,6 +36,18 @@ type History struct {
|
|
CreatedAt int64 `json:"created_at"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+type DeleteSessionResponse struct {
|
|
|
|
+ Result string `json:"result"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+type RenameSessionResp struct {
|
|
|
|
+ ID string `json:"id"`
|
|
|
|
+ Name string `json:"name"`
|
|
|
|
+ Inputs Inputs `json:"inputs"`
|
|
|
|
+ Introduction string `json:"introduction"`
|
|
|
|
+ CreatedAt int64 `json:"created_at"`
|
|
|
|
+}
|
|
|
|
+
|
|
// GetSessionList 获取会话列表
|
|
// GetSessionList 获取会话列表
|
|
func GetSessionList(baseUrl, token, user, lastId, limit string) (*SessionResponse, error) {
|
|
func GetSessionList(baseUrl, token, user, lastId, limit string) (*SessionResponse, error) {
|
|
data := &SessionResponse{}
|
|
data := &SessionResponse{}
|
|
@@ -58,6 +70,47 @@ func GetSessionList(baseUrl, token, user, lastId, limit string) (*SessionRespons
|
|
return data, nil
|
|
return data, nil
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+// DeleteSession 删除会话
|
|
|
|
+func DeleteSession(baseUrl, token, user, conversationId string) (*DeleteSessionResponse, error) {
|
|
|
|
+ data := &DeleteSessionResponse{}
|
|
|
|
+ body := make(map[string]string)
|
|
|
|
+ body["user"] = user
|
|
|
|
+ _, err := NewDifyResty(baseUrl, token).
|
|
|
|
+ R().
|
|
|
|
+ SetResult(&data).
|
|
|
|
+ SetBody(body).
|
|
|
|
+ Delete("/conversations/" + conversationId)
|
|
|
|
+
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return data, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// RenameSession 会话重命名
|
|
|
|
+func RenameSession(baseUrl, token, user, name, conversationId string) (*DeleteSessionResponse, error) {
|
|
|
|
+ data := &DeleteSessionResponse{}
|
|
|
|
+ body := make(map[string]string)
|
|
|
|
+ body["user"] = user
|
|
|
|
+ body["name"] = name
|
|
|
|
+ resp, err := NewDifyResty(baseUrl, token).
|
|
|
|
+ R().
|
|
|
|
+ SetResult(&data).
|
|
|
|
+ SetBody(body).
|
|
|
|
+ Post("/conversations/" + conversationId + "/name")
|
|
|
|
+
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if resp.IsError() {
|
|
|
|
+ return nil, errors.New(resp.String())
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return data, nil
|
|
|
|
+}
|
|
|
|
+
|
|
// GetChatHistory 获取历史会话
|
|
// GetChatHistory 获取历史会话
|
|
func GetChatHistory(baseUrl, token, user, conversationId, firstId, limit string) (*HistoryResponse, error) {
|
|
func GetChatHistory(baseUrl, token, user, conversationId, firstId, limit string) (*HistoryResponse, error) {
|
|
data := &HistoryResponse{}
|
|
data := &HistoryResponse{}
|
|
@@ -81,7 +134,7 @@ func GetChatHistory(baseUrl, token, user, conversationId, firstId, limit string)
|
|
return data, nil
|
|
return data, nil
|
|
}
|
|
}
|
|
|
|
|
|
-// NewResty 实例化dify实例
|
|
|
|
|
|
+// NewDifyResty 实例化dify实例
|
|
func NewDifyResty(baseUrl, token string) *resty.Client {
|
|
func NewDifyResty(baseUrl, token string) *resty.Client {
|
|
client := resty.New()
|
|
client := resty.New()
|
|
client.SetRetryCount(2).
|
|
client.SetRetryCount(2).
|