mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-03 10:05:13 +00:00
feat(agent):Fix agent bug (#1953)
Co-authored-by: aries_ckt <916701291@qq.com>
This commit is contained in:
@@ -39,9 +39,9 @@ class ChartItem(BaseModel):
|
||||
class DashboardAction(Action[List[ChartItem]]):
|
||||
"""Dashboard action class."""
|
||||
|
||||
def __init__(self):
|
||||
"""Create a dashboard action."""
|
||||
super().__init__()
|
||||
def __init__(self, **kwargs):
|
||||
"""Dashboard action init."""
|
||||
super().__init__(**kwargs)
|
||||
self._render_protocol = VisDashboard()
|
||||
|
||||
@property
|
||||
|
Reference in New Issue
Block a user