From 96ed2e6528770ad92861a97dcf1d91dea06805eb Mon Sep 17 00:00:00 2001 From: Andrew Huang Date: Tue, 29 Oct 2024 13:39:53 -0700 Subject: [PATCH] add hvplot as default --- lumen/ai/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lumen/ai/app.py b/lumen/ai/app.py index 7a66f89d..ae5b9f01 100644 --- a/lumen/ai/app.py +++ b/lumen/ai/app.py @@ -11,7 +11,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 @@ -49,7 +49,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="""