That would make it easier to program around, something like : ``` chat_dispatch <- function(model_family, ...) { chat <- switch( model_family, openai = chat_openai(...), claude = chat_claude(...), # etc ) } ```
That would make it easier to program around, something like :