Aider · Schema

DropFilesRequest

DropFilesRequest schema from Aider CLI

AIAI Pair ProgrammingDeveloper ToolsCLICommand LineCoding AssistantCode GenerationOpen SourcePythonApache 2.0LLMGitBYO LLMTerminalPolyglotTree SitterRepository MapPair Programming

Properties

Name Type Description
files array List of file paths to remove from chat context. Omit to drop all files.
View JSON Schema on GitHub

JSON Schema

aider-cli-drop-files-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aider/refs/heads/main/json-schema/aider-cli-drop-files-request-schema.json",
  "title": "DropFilesRequest",
  "description": "DropFilesRequest schema from Aider CLI",
  "type": "object",
  "properties": {
    "files": {
      "type": "array",
      "description": "List of file paths to remove from chat context. Omit to drop all files.",
      "items": {
        "type": "string",
        "example": "src/legacy.py"
      },
      "example": [
        "src/legacy.py"
      ]
    }
  }
}