Remove max requests per task settings option

This commit is contained in:
Saoud Rizwan
2024-09-01 01:41:43 -04:00
parent fdcec81814
commit ba4caf4f00
11 changed files with 6 additions and 147 deletions

View File

@@ -1 +0,0 @@
export const DEFAULT_MAX_REQUESTS_PER_TASK = 20

View File

@@ -15,7 +15,6 @@ export interface ExtensionMessage {
export interface ExtensionState {
version: string
apiConfiguration?: ApiConfiguration
maxRequestsPerTask?: number
customInstructions?: string
alwaysAllowReadOnly?: boolean
themeName?: string
@@ -35,7 +34,6 @@ export interface ClaudeMessage {
}
export type ClaudeAsk =
| "request_limit_reached"
| "followup"
| "command"
| "command_output"

View File

@@ -3,7 +3,6 @@ import { ApiConfiguration, ApiProvider } from "./api"
export interface WebviewMessage {
type:
| "apiConfiguration"
| "maxRequestsPerTask"
| "customInstructions"
| "alwaysAllowReadOnly"
| "webviewDidLaunch"