Aider · Schema

AskRequest

AskRequest schema from Aider CLI

Artificial IntelligenceAI Pair ProgrammingDeveloper ToolsCLICommand LineCoding AssistantCode GenerationOpen-SourcePythonApache 2.0LLMGitBYO LLMTerminalPolyglotTree-sitterRepository MapPair Programming

Properties

Name Type Description
prompt string Question to ask about the codebase.
View JSON Schema on GitHub

JSON Schema

aider-cli-ask-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-ask-request-schema.json",
  "title": "AskRequest",
  "description": "AskRequest schema from Aider CLI",
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Question to ask about the codebase.",
      "example": "How does the retry policy in the http client interact with the rate limiter?"
    }
  },
  "required": [
    "prompt"
  ]
}