feat(ChatExcel): ChatExcel Use AntV Chart

1.Native Support AntvChart
This commit is contained in:
yhjun1026
2023-11-10 16:50:44 +08:00
152 changed files with 7524 additions and 924 deletions

View File

@@ -14,6 +14,9 @@ class SqlAction(NamedTuple):
sql: str
thoughts: Dict
def to_dict(self) -> Dict[str, Dict]:
return {"sql": self.sql, "thoughts": self.thoughts}
logger = logging.getLogger(__name__)