Skip to content

Commit 99bac5a

Browse files
committed
refactor(devti): disable IdeVersionChatContextProvider by default
Modify isApplicable method to return false, limiting the scope of IdeVersionChatContextProvider usage.
1 parent be33cb4 commit 99bac5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/kotlin/cc/unitmesh/devti/provider/context/IdeVersionChatContextProvider.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import com.intellij.openapi.application.ApplicationNamesInfo
55
import com.intellij.openapi.project.Project
66

77
class IdeVersionChatContextProvider : ChatContextProvider {
8-
override fun isApplicable(project: Project, creationContext: ChatCreationContext) = true
8+
override fun isApplicable(project: Project, creationContext: ChatCreationContext) = false
99

1010
override fun collect(project: Project, creationContext: ChatCreationContext): List<ChatContextItem> {
1111
val productName = ApplicationNamesInfo.getInstance().fullProductName

0 commit comments

Comments
 (0)