|
@@ -2382,7 +2382,12 @@ type GptMessageReq struct {
|
|
|
// swagger:model GptMessageResp
|
|
|
type GptMessageResp struct {
|
|
|
BaseDataInfo
|
|
|
- Data []Message `json:"data"`
|
|
|
+ Data GptMessageList `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+type GptMessageList struct {
|
|
|
+ HasMore bool `json:"hasMore"`
|
|
|
+ Data []Message `json:"data"`
|
|
|
}
|
|
|
|
|
|
type Message struct {
|
|
@@ -2403,13 +2408,17 @@ type GptsSessionReq struct {
|
|
|
// swagger:model GptsSessionResp
|
|
|
type GptsSessionResp struct {
|
|
|
BaseDataInfo
|
|
|
- Data []Session `json:"data"`
|
|
|
+ Data GptsSessionList `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+type GptsSessionList struct {
|
|
|
+ HasMore bool `json:"hasMore"`
|
|
|
+ Data []Session `json:"data"`
|
|
|
}
|
|
|
|
|
|
type Session struct {
|
|
|
Id *string `json:"id"`
|
|
|
Name *string `json:"name"`
|
|
|
- Status *string `json:"status"`
|
|
|
CreatedAt *int `json:"createdAt"`
|
|
|
Inputs interface{} `json:"inputs"`
|
|
|
}
|