diff --git a/lumen/ai/app.py b/lumen/ai/app.py index 8fe1b32e..867293fb 100644 --- a/lumen/ai/app.py +++ b/lumen/ai/app.py @@ -12,7 +12,7 @@ from ..sources import Source from ..sources.duckdb import DuckDBSource from .agents import ( - AnalysisAgent, ChatAgent, SourceAgent, SQLAgent, + AnalysisAgent, ChatAgent, SourceAgent, SQLAgent, hvPlotAgent, ) from .assistant import Assistant, PlanningAssistant from .llm import Llm, OpenAI @@ -50,7 +50,7 @@ class LumenAI(Viewer): List of additional Agents to add beyond the default_agents.""" ) - default_agents = param.List(default=[ChatAgent, SourceAgent, SQLAgent], doc=""" + default_agents = param.List(default=[ChatAgent, SourceAgent, SQLAgent, hvPlotAgent], doc=""" List of default agents which will always be added.""") llm = param.ClassSelector(class_=Llm, default=OpenAI(), doc="""