my_configuration - MadBomber/aia GitHub Wiki
I use the bash
shell. In my .bashrc
file I source another file named .bashrc__aia
which looks like this:
# ~/.bashic_aia
# AI Assistant
# These are the defaults:
export AIA_PROMPTS_DIR=~/.prompts
export AIA_OUT_FILE=./temp.md
export AIA_LOG_FILE=$AIA_PROMPTS_DIR/_prompts.log
export AIA_MODEL=gpt-4o-mini
# Not a default. Invokes spinner. If not true then there is no spinner
# for feedback while waiting for the LLM to respond.
export AIA_VERBOSE=true
alias chat='aia --chat --terse'
# rest of the file is the completion function
- Configuration - Complete configuration options
- My Most Powerful Prompt - See how the chat alias is used
- Shell Integration
- Direnv Integration - For project-specific configurations