fix: typo error fix (#1228)

This commit is contained in:
magic.chen
2024-03-01 19:33:16 +08:00
committed by GitHub
parent 0e61c55e12
commit ed4df23e4e
25 changed files with 39 additions and 37 deletions

View File

@@ -1,7 +1,7 @@
from typing import Dict
from dbgpt._private.config import Config
from dbgpt.agent.plugin.commands.command_mange import ApiCall
from dbgpt.agent.plugin.commands.command_manage import ApiCall
from dbgpt.app.scene import BaseChat, ChatScene
from dbgpt.util.executor_utils import blocking_func_to_async
from dbgpt.util.tracer import root_tracer, trace
@@ -40,7 +40,7 @@ class ChatWithDbAutoExecute(BaseChat):
self.database = CFG.LOCAL_DB_MANAGE.get_connect(self.db_name)
self.top_k: int = 50
self.api_call = ApiCall(display_registry=CFG.command_disply)
self.api_call = ApiCall(display_registry=CFG.command_display)
@trace()
async def generate_input_values(self) -> Dict: