Skip to content

Commit

Permalink
fix link to mybinder
Browse files Browse the repository at this point in the history
  • Loading branch information
ltalirz committed May 9, 2024
1 parent 2eed6ba commit cc6d602
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Run Calculations with a Large Language Model
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jan-janssen/comp-mat-sci-llm/HEAD)
[![Open-with-Voila](https://img.shields.io/badge/Open%20with-Voila-4eafa0.svg)](https://mybinder.org/v2/gh/jan-janssen/comp-mat-sci-llm/main?urlpath=/voila/render/7_voila.ipynb)
[![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white)](https://hub.docker.com/r/ltalirz/comp-mat-sci-llm)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jan-janssen/LangSim/HEAD)
[![Open-with-Voila](https://img.shields.io/badge/Open%20with-Voila-4eafa0.svg)](https://mybinder.org/v2/gh/jan-janssen/LangSim/main?urlpath=/voila/render/7_voila.ipynb)
[![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white)](https://hub.docker.com/r/ltalirz/LangSim)

The computational chemistry and computational materials science community have both developed a great number of
simulation tools. Still these tools typically require either rather cryptic input files or at least a fundamental
Expand All @@ -18,7 +18,7 @@ LLM to scientific simulation codes and calculate physical properties from a natu
### Via pip
While our package is not yet available on the Python Package Index, you can install it directly using:
```
pip install git+https://github.com/jan-janssen/comp-mat-sci-llm.git
pip install git+https://github.com/jan-janssen/LangSim.git
```
The pip package includes optional dependencies for the `mace` model and the `jupyter` integration.

Expand All @@ -31,9 +31,9 @@ Prerequisites:
- [conda](https://docs.conda.io/en/latest/miniconda.html)

```bash
git clone https://github.com/jan-janssen/comp-mat-sci-llm
cd comp-mat-sci-llm
conda env create -f environment.yml --name comp-mat-sci-llm
git clone https://github.com/jan-janssen/LangSim
cd LangSim
conda env create -f environment.yml --name LangSim
```

### As Docker Container
Expand Down
2 changes: 1 addition & 1 deletion postBuild
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ rm -rf build llm_compmat.egg-info

# Autoload line magic
mkdir -p ~/.ipython/profile_default/startup
cat ~/.ipython/profile_default/startup/load_extensions.py <<EOF
cat > ~/.ipython/profile_default/startup/load_extensions.py <<EOF
get_ipython().run_line_magic('load_ext', 'llm_compmat')
EOF

0 comments on commit cc6d602

Please sign in to comment.