mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: Remove remaining references to disableLlmCommandSuggestions
This completes the removal of the LLM command suggestions feature by: - Removing the setting from Task.ts system prompt generation - Removing the message handler case from webviewMessageHandler.ts
This commit is contained in:
parent
d899a36bd4
commit
39a8fad110
2 changed files with 0 additions and 5 deletions
|
|
@ -1649,7 +1649,6 @@ export class Task extends EventEmitter<ClineEvents> {
|
|||
maxReadFileLine !== -1,
|
||||
{
|
||||
maxConcurrentFileReads,
|
||||
disableLlmCommandSuggestions: state?.disableLlmCommandSuggestions ?? false,
|
||||
},
|
||||
)
|
||||
})()
|
||||
|
|
|
|||
|
|
@ -1273,10 +1273,6 @@ export const webviewMessageHandler = async (
|
|||
await updateGlobalState("followupAutoApproveTimeoutMs", message.value)
|
||||
await provider.postStateToWebview()
|
||||
break
|
||||
case "disableLlmCommandSuggestions":
|
||||
await updateGlobalState("disableLlmCommandSuggestions", message.bool ?? false)
|
||||
await provider.postStateToWebview()
|
||||
break
|
||||
case "browserToolEnabled":
|
||||
await updateGlobalState("browserToolEnabled", message.bool ?? true)
|
||||
await provider.postStateToWebview()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue