CLI Reference
audia ships a Typer CLI with Rich output.
audia --help
audia convert
Convert one or more local PDF files to audio.
audia convert [PATHS]... [OPTIONS]
Option |
Default |
Description |
|---|---|---|
|
|
Output directory for .mp3 files |
|
config |
LLM provider override ( |
|
config |
LLM model override |
|
config |
TTS backend override |
|
config |
TTS voice override |
Examples:
audia convert paper.pdf
audia convert a.pdf b.pdf --output ~/audiobooks
audia convert report.pdf --provider anthropic --model claude-3-5-sonnet-20241022
audia research
Search ArXiv, select papers, and convert them to audio.
audia research [QUERY] [OPTIONS]
Option |
Default |
Description |
|---|---|---|
|
|
Max papers to retrieve |
|
|
Skip interactive selection and convert all results |
|
config |
LLM provider override |
|
config |
LLM model override |
|
config |
TTS backend override |
Examples:
audia research "retrieval augmented generation"
audia research "diffusion models" --max-results 5 --convert
audia listen
Record a spoken query, transcribe it, distil it with the LLM, confirm, then run the research pipeline.
audia listen [OPTIONS]
Option |
Default |
Description |
|---|---|---|
|
|
Max recording duration |
|
|
Max ArXiv results |
After transcription, you will be prompted to:
y— confirm and searchr— re-recordq— quit
audia serve
Start the FastAPI web UI.
audia serve [OPTIONS]
Option |
Default |
Description |
|---|---|---|
|
|
Bind host |
|
|
Bind port |
|
|
Enable Uvicorn auto-reload (dev) |
|
|
Don’t open a browser tab on start |
audia info
Print all active settings — useful for verifying your .env is loaded.
audia info
audia --version
Print the installed version and exit.
audia --version