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
Using the example code from simple_agent in the Quickstart, the CLI example using agentos run doesn't work. The error complains about advance not being implemented:
Found first subclass class <class 'agentos.core.Agent'>; returning it.
Traceback (most recent call last):
...
NotImplementedError
It appears to be using the wrong subclass of Agent.
With the provided simple_agent.py, in the python interpreter we see:
Using the example code from
simple_agent
in the Quickstart, the CLI example usingagentos run
doesn't work. The error complains aboutadvance
not being implemented:It appears to be using the wrong subclass of Agent.
With the provided
simple_agent.py
, in the python interpreter we see:We can change the first two lines of
simple_agent.py
to beThen in the interpreter we see:
With this version, with
SimpleAgent
first in the list, the CLI example works.The text was updated successfully, but these errors were encountered: