-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b1fcf1
commit 33a816a
Showing
5 changed files
with
69 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
from langsim.shell import dialog as dialog_python | ||
|
||
|
||
def load_ipython_extension(ipython): | ||
""" | ||
Any module file that define a function named `load_ipython_extension` | ||
can be loaded via `%load_ext module.path` or be configured to be | ||
autoloaded by IPython at startup time. | ||
""" | ||
from .magics import CompMatMagics | ||
from langsim.magics import CompMatMagics | ||
ipython.register_magics(CompMatMagics) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
SYSTEM_PROMPT = """ | ||
You are very powerful assistant, but don't know current events. | ||
You can calculate materials properties with EMT and MACE. | ||
- Effective medium theory (EMT) is a cheap, analytical model that describes the macroscopic properties of composite materials, but is not available for all elements. | ||
To calculate with EMT use the calculator string "emt". | ||
- MACE is a powerful machine learning force field for predicting many-body atomic interactions that covers the periodic table. | ||
To calculate with MACE use the calculator string "mace". | ||
If the user does not specify a calculator string, ask the user to provide one. | ||
If no chemical element is provided, use Aluminum as the default chemical element. | ||
""" |
This file was deleted.
Oops, something went wrong.