Value Options - MadBomber/aia GitHub Wiki
Like the switch options every value option has an associated Config Item and system environment variable which can be accessed using the long form name of the option. Every value option expects to have an associated value on the command line. For example aia one --model gpt-3.5
where the value of the --model
option is "gpt-3.5"
The current value options available are:
Value Option | SF | Config Item | Default Value | Envar Key |
---|---|---|---|---|
--role | -r | role | AIA_ROLE | |
--out_file | -o | out_file | temp.md | AIA_OUT_FILE |
--log_file | -l | log_file | _prompts.log | AIA_LOG_FILE |
--next | -n | next | AIA_NEXT | |
--pipeline | pipeline | AIA_PIPELINE | ||
--model | -m | model | gpt-4 | AIA_MODEL |
The --pipeline
options is the only one which can have multiple comma seperated values after it. For example aia one --pipeline two,three,four
- note that there are no spaces between the different prompt IDs in the value for the pipeline. Only commas seperate the multiple values.
TODO: add the rest