Skip to content

Commit

Permalink
feat(Agent): change plugin path
Browse files Browse the repository at this point in the history
change plugin path
  • Loading branch information
yhjun1026 committed Dec 26, 2023
1 parent 4f0df6f commit ba44446
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dbgpt/agent/agents/expand/sql_assistant_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from dbgpt.agent.agents.base_agent import ConversableAgent
from dbgpt.core.awel import BaseOperator

from ...commands.command_mange import ApiCall
from dbgpt.agent.plugin.commands.command_mange import ApiCall
from ...memory.gpts_memory import GptsMemory
from ..agent import Agent

Expand Down
6 changes: 3 additions & 3 deletions dbgpt/app/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ def server_init(param: "WebServerParameters", system_app: SystemApp):
cfg.command_registry = command_registry

command_disply_commands = [
"dbgpt.agent.plugin.commands.disply_type.show_chart_gen",
"dbgpt.agent.plugin.commands.disply_type.show_table_gen",
"dbgpt.agent.plugin.commands.disply_type.show_text_gen",
"dbgpt.agent.plugin.commands.built_in.disply_type.show_chart_gen",
"dbgpt.agent.plugin.commands.built_in.disply_type.show_table_gen",
"dbgpt.agent.plugin.commands.built_in.disply_type.show_text_gen",
]
command_disply_registry = CommandRegistry()
for command in command_disply_commands:
Expand Down

0 comments on commit ba44446

Please sign in to comment.