(improvement)(Chat) Integrate chat with plugin recognizer and parse result processor (#820)

Co-authored-by: jolunoluo
This commit is contained in:
LXW
2024-03-14 18:37:09 +08:00
committed by GitHub
parent 30ee64efec
commit 5519a507ae
35 changed files with 463 additions and 290 deletions

View File

@@ -0,0 +1,13 @@
package com.tencent.supersonic.headless.api.pojo.response;
import com.tencent.supersonic.headless.api.pojo.SchemaMapInfo;
import lombok.Data;
@Data
public class MapResp {
private String queryText;
private SchemaMapInfo mapInfo = new SchemaMapInfo();
}