Find answers from the community

s
snkewl
Offline, last seen 3 months ago
Joined September 25, 2024
s
snkewl
·

Update

can someone help me with this error?


from llama_hub.tools.arxiv import ArxivToolSpec
from llama_index.agent.openai import OpenAIAgent

tool_spec = ArxivToolSpec()

agent = OpenAIAgent.from_tools(tool_spec.to_tool_list())

agent.chat("What's going on with the superconductor lk-99")
agent.chat("what are the latest developments in machine learning")



error: File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/llama_hub/tools/arxiv/base.py", line 5, in <module>
from llama_index.readers.schema.base import Document
ModuleNotFoundError: No module named 'llama_index.readers.schema'
1 comment
L
Hey everyone, I am looking for a fast way for a bunch of tool calling llm example agents in Python, that are easy to implement. Was wondering if anyone had access to a repo. Was trying to use llama doc tool/toolkit examples but a lot of it is outdated and having to work more updating it.
2 comments
s
W