Aider · Schema

VoiceTranscript

VoiceTranscript schema from Aider CLI

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

Properties

Name Type Description
text string Transcribed text queued as the next prompt.
duration_ms integer Length of the recorded clip.
View JSON Schema on GitHub

JSON Schema

aider-cli-voice-transcript-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-voice-transcript-schema.json",
  "title": "VoiceTranscript",
  "description": "VoiceTranscript schema from Aider CLI",
  "type": "object",
  "properties": {
    "text": {
      "type": "string",
      "description": "Transcribed text queued as the next prompt.",
      "example": "refactor the cache layer to use lru eviction"
    },
    "duration_ms": {
      "type": "integer",
      "description": "Length of the recorded clip.",
      "example": 4200
    }
  }
}