mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-30 07:11:56 +00:00
Merge remote-tracking branch 'origin/main' into Agent_Hub_Dev
This commit is contained in:
commit
e65adc7cbf
BIN
assets/chat_agent/agent_hub_1.png
Normal file
BIN
assets/chat_agent/agent_hub_1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 550 KiB |
BIN
assets/chat_agent/agent_hub_2.png
Normal file
BIN
assets/chat_agent/agent_hub_2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 503 KiB |
BIN
assets/chat_agent/chat_agent0.png
Normal file
BIN
assets/chat_agent/chat_agent0.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 764 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 732 KiB |
BIN
assets/chat_agent/chat_agent2.png
Normal file
BIN
assets/chat_agent/chat_agent2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
@ -1,25 +1,24 @@
|
||||
ChatAgent
|
||||
==================================
|
||||
ChatAgent can automatically select the right tool to answer and solve user problems through LLM.
|
||||

|
||||

|
||||
|
||||
### 1.Update Plugins From Git
|
||||
Update the latest plug-in information from the DB-GPT official plug-in repository.
|
||||

|
||||

|
||||
|
||||
### 2.Install Plugin
|
||||
Install the plugin you want to use from the list of agent hub plugins.
|
||||

|
||||
|
||||

|
||||
|
||||
### 3.Upload My Local Plugin File
|
||||
If you want to use a private plug-in developed by yourself, you can upload the plug-in first and then use it.
|
||||

|
||||
|
||||
### 4.Select installed plug-ins dialog
|
||||
Select an installed plugin to have a conversation.
|
||||

|
||||

|
||||

|
||||
|
||||
### 5.Uninstall My Plugin
|
||||
Uninstall plugins you no longer need.
|
||||

|
||||

|
@ -63,7 +63,6 @@ class ChatAgent(BaseChat):
|
||||
|
||||
def stream_plugin_call(self, text):
|
||||
text = text.replace("\n", " ")
|
||||
print(f"stream_plugin_call:{text}")
|
||||
return self.api_call.run(text)
|
||||
|
||||
def __list_to_prompt_str(self, list: List) -> str:
|
||||
|
@ -88,5 +88,4 @@ class ChatExcel(BaseChat):
|
||||
|
||||
def stream_plugin_call(self, text):
|
||||
text = text.replace("\n", " ")
|
||||
print(f"stream_plugin_call:{text}")
|
||||
return self.api_call.run_display_sql(text, self.excel_reader.get_df_by_sql_ex)
|
||||
|
Loading…
Reference in New Issue
Block a user