Preset inheritance and composition — DRY config for related presets #95
santoyaworobey2
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
We have 15 MDA presets that share a lot of common config. For example, all our "summarize" variants share the same
max_output_tokens,temperature, and retry policy — they only differ inproviderandmodel.Currently we duplicate everything:
Proposal: Preset inheritance with override:
This would also support composition (mixing in shared retry/cache configs). Makes maintaining 15+ presets much less error-prone.
All reactions