@@ -32,7 +32,7 @@ actionLocation: ContextMenu
3232- ` afterStreaming ` :流结束后执行任务的决策,路由到不同的任务。
3333- ` shortcut ` :操作的 IDE 快捷键,使用 IntelliJ IDEA 的快捷键格式。
3434- ` enabled ` :是否启用操作。
35- - ` model ` : 使用的大语言模型,使用 ` .shireEnv .json ` 定义。
35+ - ` model ` : 使用的大语言模型,使用 ` .autodevEnv .json ` 定义。
3636- ` userData ` :其余数据。
3737
3838### 示例代码
@@ -63,6 +63,7 @@ enum class InteractionType(val description: String) {
6363 ReplaceCurrentFile (" Replace the content of the current file" ),
6464 InsertBeforeSelection (" Insert content before the currently selected content" ),
6565 RunPanel (" Show Result in Run panel which is the bottom of the IDE" ),
66+ ChatPanel (" Show Result in Chat panel which is the right of the IDE" ),
6667 OnPaste (" Copy the content to the clipboard" ),
6768 RightPanel (" Show Result in Right panel which is the right of the IDE" ),
6869 StreamDiff (" Use streaming diff to show the result" )
@@ -85,10 +86,9 @@ enum class ShireActionLocation(val location: String, val description: String) {
8586 DATABASE_MENU (" DatabaseMenu" , " Show in Database panel menu bar" ),
8687 CONSOLE_MENU (" ConsoleMenu" , " Show in Console panel menu bar" ),
8788 VCS_LOG_MENU (" VcsLogMenu" , " Show in VCS Log panel menu bar" ),
88- CHAT_BOX (" ChatBox" , " Show in Chat Box" ), // 将默认使用 RigthPanel 作为展示位置
89+ CHAT_BOX (" ChatBox" , " Show in Chat Box, default in Right Panel " ),
8990 INLINE_CHAT (" InlineChat" , " Show in Inline Chat" ),
9091
91- // / external plugins
9292 EXT_SONARQUBE_MENU (" ExtSonarQubeMenu" , " Show in SonarQube panel menu bar" ),
9393 ;
9494}
0 commit comments