Molecule 3D Tools¶
Configuration File: molecule_3d_tools.json
Tool Type: Local
Tools Count: 1
This page contains all tools defined in the molecule_3d_tools.json configuration file.
Available Tools¶
visualize_molecule_3d (Type: Molecule3DTool)¶
Visualize 3D molecular structures using RDKit and py3Dmol. Supports SMILES, MOL files, SDF conten…
visualize_molecule_3d tool specification
Tool Information:
Name:
visualize_molecule_3dType:
Molecule3DToolDescription: Visualize 3D molecular structures using RDKit and py3Dmol. Supports SMILES, MOL files, SDF content, and various visualization styles with interactive 3D viewing capabilities.
Parameters:
smiles(string) (required) SMILES string representation of the moleculemol_content(string) (required) MOL file content as stringsdf_content(string) (required) SDF file content as stringstyle(string) (optional) Visualization stylecolor_scheme(string) (optional) Color scheme for the moleculewidth(integer) (optional) Width of the visualization in pixelsheight(integer) (optional) Height of the visualization in pixelsshow_hydrogens(boolean) (optional) Whether to show hydrogen atomsshow_surface(boolean) (optional) Whether to show molecular surfacegenerate_conformers(boolean) (optional) Whether to generate multiple conformersconformer_count(integer) (optional) Number of conformers to generate
Example Usage:
query = {
"name": "visualize_molecule_3d",
"arguments": {
"smiles": "example_value",
"mol_content": "example_value",
"sdf_content": "example_value"
}
}
result = tu.run(query)