(improvement)(Chat) Agent supports configuring whether to enable simple mode and whether to display debugging information. (#1181)

Co-authored-by: lxwcodemonkey
This commit is contained in:
LXW
2024-06-21 16:02:04 +08:00
committed by GitHub
parent d9de4aabdd
commit e548b57d97
8 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
package com.tencent.supersonic.common.config;
import lombok.Data;
@Data
public class VisualConfig {
private boolean enableSimpleMode;
private boolean showDebugInfo;
}