Currently, the logic tell if a model is Llama2 or Falcon is via hardcoded strings, like "tiiuae/falcon-7b", at https://github.com/tigerlab-ai/tiger/blob/8ad8d38fd236a4c3c333a761765c18171ee3afd2/TigerTune/tigertune/finetuning/llm/text_generation_transformer.py#L68 and https://github.com/tigerlab-ai/tiger/blob/8ad8d38fd236a4c3c333a761765c18171ee3afd2/TigerTune/tigertune/finetuning/llm/text_generation_transformer.py#L332. It would be useful to replace these hardcoded strings with a more systematic approach.