mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-13 04:57:28 +00:00
[feature](chat)Support delete all memory from the agent management.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.tencent.supersonic.chat.api.pojo.request;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class ChatMemoryDeleteReq {
|
||||
|
||||
private List<Long> ids;
|
||||
|
||||
private Integer agentId;
|
||||
}
|
||||
Reference in New Issue
Block a user