Metadata-Version: 2.4
Name: geom-x
Version: 2.0.1
Summary: Include RDKit for molecular manipulation.
Author-email: Pablo Grobas Illobre <pgrobasillobre@gmail.com>
License: GPL-3.0-or-later
Project-URL: Homepage, https://github.com/pgrobasillobre/geom
Project-URL: Documentation, https://github.com/pgrobasillobre/geom/wiki
Project-URL: Bug Tracker, https://github.com/pgrobasillobre/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy==1.24.3; python_version < "3.12"
Requires-Dist: numpy>=1.26.0; python_version >= "3.12"
Requires-Dist: launchpadlib==2.1.0
Requires-Dist: openai==1.3.8
Requires-Dist: pyautogen==0.2.18
Requires-Dist: flaml[automl]==2.1.1
Requires-Dist: httpx==0.27.2
Requires-Dist: python-dotenv>=1.0.1
Provides-Extra: ui
Requires-Dist: PySide6>=6.7.0; extra == "ui"
Provides-Extra: viz
Requires-Dist: py3Dmol; extra == "viz"
Provides-Extra: cad
Requires-Dist: gmsh==4.11.1; extra == "cad"
Provides-Extra: chem
Requires-Dist: rdkit-pypi; extra == "chem"
Provides-Extra: test
Requires-Dist: pytest==8.3.4; extra == "test"
Requires-Dist: ase==3.22.1; extra == "test"
Requires-Dist: gmsh==4.11.1; extra == "test"
Requires-Dist: py3Dmol; extra == "test"
Requires-Dist: rdkit-pypi; extra == "test"
Dynamic: license-file

# GEOM – Geometry File Management

**GEOM** is a command-line tool for creating, modifying, and analyzing XYZ geometry files. It provides **geometry transformations, nanoparticle generation, and graphene structure creation** for computational research.

**[View the Documentation](https://geom-grobas.readthedocs.io/en/branch-v2.0.0)**

<p align="center">
  <img src="https://raw.githubusercontent.com/pgrobasillobre/geom/master/docs/_static/geom-logo-rdkit.png" width="600">
</p>


## Publications

GEOM has been used in the following research paper(s):

- Giovannini, T.; **Grobas Illobre, P.**; Lafiosca, P.; Nicoli, L.; Bonatti, L.; Corni, S.; Cappelli, C. *plasmonX: an Open-Source Code for Nanoplasmonics.* **Comput. Phys. Commun.** *2026*, **110035**. https://doi.org/10.1016/j.cpc.2026.110035


## Features

- **RDKit tools**: molecular visualization, file conversion, force field optimization, and conformers generation.
- **AI Assistant for nanoparticle and graphene creation** 
- **Geometry Transformations**: Translation, rotation, merging, and specular (mirror) transformations.
- **Nanoparticle Generation**: Sphere, rod, core-shell, tip, pyramid, cone, icosahedron, and more.
- **Graphene Structures**: Ribbons, disks, rings, and triangles.
- **Advanced Options**: Alloying, dimer formation, and bowtie configurations.
- **Minimum Distance Calculation** between XYZ geometries.
- **Geometrical Center Computation**.

## Installation

GEOM requires **Python 3.8+** and the following dependencies:

- `gmsh==4.11.1`
- `ase==3.22.1`
- `numpy==1.24.3`
- `pytest==8.3.4`
- `launchpadlib==2.1.0`
- `pyautogen==0.2.18`
- `flaml[automl]==2.1.1`
- `httpx==0.27.2`

### Setting Up the Virtual Environment
GEOM uses **Conda** to set up a virtual environment for your project. To install it and set up your environment, run the following:
```
./install.sh
```

This script will:

 - Check if **Miniconda** or **Anaconda** is installed. If not, it will prompt you to install Miniconda.
 - Set up a virtual environment named geom_env with the necessary dependencies.
 - Configure environment variables and aliases for running **GEOM**.

## Activate the Environment

After installation, load the GEOM environment by running:

```
geom_load
```

This will set the necessary aliases and environment variables to run the tool properly.

Once the environment is set up, run the following command to see the available options:

```
geom -h
```

This will display the help menu with all the available commands and their descriptions.

Example commands:

- **RDKit conformers generation**
```
geom -rdkit -i tyrosine.mol -confs
```

- **RDKit file conversion**
```
geom -rdkit -i tyrosine.mol -o tyrosine.pdb
```

- **Rotate geometry 90 degrees** around the Y-axis:

```
geom -r1 90 geom.xyz origin_CM_yes +y
```

- **Generate** a nanoparticle sphere:

```
geom -create -sphere Ag 30
```

- **Generate** a graphene ribbon: 

```
geom -create -graphene rib 50 20
```

## Starting the AI Assistant

GEOM now includes an **AI-powered assistant** that understands natural language, translates it into valid GEOM CLI commands, and executes them automatically.

This assistant is built using [Microsoft's AutoGen framework](https://github.com/microsoft/autogen), which enables a multi-agent system to interface with OpenAI’s language models and run commands dynamically.

### 1. Export your OpenAI API key

The assistant requires access to **OpenAI's LLMs**. Make sure you have your API key set:

```
export OPENAI_API_KEY=your-api-key-here
```

> You can obtain an API key from https://platform.openai.com/account/api-keys

### 2. Start the assistant

To launch the chat-based assistant, load the GEOM environment (i.e., with `geom_load`) and run:

```
ai_geom
```

You’ll be greeted with a ChatGPT-like chat prompt where you can type your requests for geometry creation:

<p align="center">
  <img src="https://raw.githubusercontent.com/pgrobasillobre/geom/master/docs/_static/ai_assistant.png" width="600">
</p>


The assistant will automatically create and execute the corresponding GEOM command for you.


## Running Tests

The `./install.sh` script automatically runs tests to ensure everything is set up correctly.


To manually run the tests again:

```
./geom/tests/run_all_tests.sh
```

## License

GEOM is licensed under the **GNU General Public License v3.0**.

## Funding

This project has been supported by the **FARE 2020** program — *"Framework per l’attrazione e il rafforzamento delle eccellenze per la ricerca in Italia."*

## Contact

For issues or contributions:

- Email: **pgrobasillobre@gmail.com**
- Github issues: https://github.com/pgrobasillobre/geom/issues
