gitextract_jfht9tp3/ ├── ChatDrug/ │ ├── TAPE_benchmark/ │ │ ├── __init__.py │ │ ├── datasets.py │ │ ├── metrics.py │ │ ├── models.py │ │ └── trainer.py │ └── task_and_evaluation/ │ ├── Conversational_LLMs_utils.py │ ├── __init__.py │ ├── peptide_editing.py │ ├── prompt_specification.json │ ├── protein_editing.py │ └── small_molecule_editing.py ├── ChatDrug_demo.ipynb ├── README.md ├── data/ │ ├── README.md │ ├── peptide/ │ │ ├── class1_pseudosequences.csv │ │ ├── peptide_editing.json │ │ ├── peptide_editing_threshold.json │ │ ├── preprocess_step_1_data_extraction.py │ │ ├── preprocess_step_2_single_prop.py │ │ ├── preprocess_step_3_multi_prop.py │ │ └── selected_alleles.txt │ └── small_molecule/ │ └── small_molecule_editing.txt ├── main_ChatDrug.py ├── main_InContext.py ├── setup.py └── utils.py