You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an error while running the code provided for the ChemCrow model. The error message suggests that the "paperscraper" module is missing. Upon checking the setup file, I noticed that this module was commented out. Do you have any recommendations on how to address this issue?
My code:
chem_model = ChemCrow(model="gpt-4-0613", temp=0.1, streaming=False)
chem_model.run("What is the molecular weight of tylenol?")
When running the code above I get this error:
Traceback (most recent call last):
File "/home/runner/ChenCrow/main.py", line 1, in
from chemcrow.agents import ChemCrow
File "/home/runner/ChenCrow/.pythonlibs/lib/python3.10/site-packages/chemcrow/init.py", line 1, in
from .tools.rdkit import *
File "/home/runner/ChenCrow/.pythonlibs/lib/python3.10/site-packages/chemcrow/tools/init.py", line 4, in
from .search import * # noqa
File "/home/runner/ChenCrow/.pythonlibs/lib/python3.10/site-packages/chemcrow/tools/search.py", line 7, in
import paperscraper
ModuleNotFoundError: No module named 'paperscraper'
The text was updated successfully, but these errors were encountered:
I encountered an error while running the code provided for the ChemCrow model. The error message suggests that the "paperscraper" module is missing. Upon checking the setup file, I noticed that this module was commented out. Do you have any recommendations on how to address this issue?
My code:
When running the code above I get this error:
The text was updated successfully, but these errors were encountered: