[X] I checked the documentation and found no answer to my problem
[X] I checked the existing issues and made sure there are no similar bug reports
Category
Bug in Agentverse
Expected Behavior
The hosted agent should just write in the log.
Observed Behavior
When I import BeautifulSoup which is an allowed import, the agent freezes. Sometimes it doesn´t even print the ¨Starting agent¨ text.
It just stays that way no matter how long it keep running.
To Reproduce
Here is the hosted agent code, just remove/add the # at the beginning of the import to test it:
from uagents import Agent, Context
import requests
#from bs4 import BeautifulSoup
agent = Agent()
@agent.on_event("startup")
async def say_hello(ctx: Context):
"""Logs hello message on startup"""
ctx.logger.info(f"Hello, I'm an agent.")
if __name__ == "__main__":
agent.run()
Hello, thanks for the issue! Sorry, but some of these packages are not yet available, but will soon be available, hopefully within the next couple of weeks. These are the currently available imports:
Prerequisites
Category
Bug in Agentverse
Expected Behavior
The hosted agent should just write in the log.
Observed Behavior
When I import BeautifulSoup which is an allowed import, the agent freezes. Sometimes it doesn´t even print the ¨Starting agent¨ text. It just stays that way no matter how long it keep running.
To Reproduce
Here is the hosted agent code, just remove/add the # at the beginning of the import to test it:
Environment Details (Optional)
No response
Failure Logs (Optional)
No response
Additional Information (Optional)
No response