mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-07 12:00:46 +00:00
feat(agent):Fix agent bug (#1953)
Co-authored-by: aries_ckt <916701291@qq.com>
This commit is contained in:
@@ -41,9 +41,9 @@ class IndicatorInput(BaseModel):
|
||||
class IndicatorAction(Action[IndicatorInput]):
|
||||
"""Indicator Action."""
|
||||
|
||||
def __init__(self):
|
||||
"""Init Indicator Action."""
|
||||
super().__init__()
|
||||
def __init__(self, **kwargs):
|
||||
"""Init indicator action."""
|
||||
super().__init__(**kwargs)
|
||||
self._render_protocol = VisApiResponse()
|
||||
|
||||
@property
|
||||
|
Reference in New Issue
Block a user