Every response from AI is now backed by verified chemical reactions with citation. Never worry about AI making up substances or pathways again. Free for all humanity, contributed by the community.
Use our AI to dig into reactions, suggest synthesis pathways, and provide research insights, as an expert chemist reading thousands of papers for you.
Chat-with-Reactions demoOpen science is non-sustainable without incentives. Just like the Crusades who fought for faith and money, we want you to do the same. We share profits with you for your contributions. Unlike Elsevier or Springer who puts papers you wrote behind the paywall and pockets all the profits, HuggingAtom treats you as a content creator.
#!pip install huggingatom
from huggingatom import find_reactions
reactions: str = find_reactions("acetone", k=4)
query= "How is acetone used in these reactions?"
from openai import OpenAI
prompt = f"""Based on the info below
{reactions}
answer the question: {query}"""
print(OpenAI().responses.\
create(input=prompt, model="gpt-4.1-nano").\
output[0].content[0].text)
Use HuggingAtom SDK in your Jupyter Notebook or apps. Plug it with any LLM your like or simply use our inference service.
Don't know frontend? Use our sister library Funix.io to fire up an app from any Python function or Pydantic class.