Skip to content

Latest commit

 

History

History
79 lines (78 loc) · 2.25 KB

struct.md

File metadata and controls

79 lines (78 loc) · 2.25 KB
/ToolsAgent
├── __pycache__
├── DataFiles
│   ├── cif
│   ├── csv
│   ├── md
│   ├── pdb
│   ├── pdf
│   └── sdf
├── LogFiles
├── TempFiles
│   ├── adsorption_stability_temp_data
│   ├── arxiv_pdf
│   ├── ChemLab
│   ├── cif
│   ├── pdb
│   ├── RASPA_Output
│   └── upload
├── TestCode
│   ├── calc
│   │   └── nwchem
│   │       └── __init__.py
│   └── test_openai.py
│   └── test_biology_tools.py
│   └── test_chemical_tools.py
│   └── test_material_tools.py
│   └── test_general_tools.py
├── ToolsFuns
│   ├── Biology
│   │   ├── support
│   │   │   └── __init__.py
│   │   ├── biologyCommon.py
│   │   ├── extensionsTools.py
│   │   ├── ForceGPT.py
│   │   ├── novoproToolsBio.py
│   │   ├── protAgentTools.py
│   │   ├── qizhihpeiTools.py
│   │   └── tool_name_dict.py
│   ├── Chemical
│   │   ├── MLChemTools.py
│   │   ├── novoproToolsChem.py
│   │   ├── rdkitToolsPartOne.py
│   │   ├── rdkitToolsPartTwo.py
│   │   ├── rdkitToolsPartThree.py
│   │   ├── rxn4chem_ncbi.py
│   │   └── tool_name_dict.py
│   ├── General
│   │   ├── generalCommon.py
│   │   └── tool_name_dict.py
│   ├── Material
│   │   ├── adsorbStabilityTools.py
│   │   ├── adsorptionStabilityTools.py
│   │   ├── adsorptivityStabilityTools.py
│   │   ├── chatmoTools.py
│   │   ├── extensionsTools.py
│   │   ├── materialCommon.py
│   │   ├── MPTools.py
│   │   └── tool_name_dict.py
│   └── utils
│       ├── common.py
│       ├── sendRequest.py
│       └── tools_dict.py
├── utils
│   ├── common.py
│   ├── config.py
│   └── tools_dict.py
├── .gitignore
├── config.py
├── example.env
├── main.py
├── README.md
├── requirements.txt
├── run.sh
├── struct.md
├── tool_runner.py
└── tools_fun.py