We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The two example code segments for using run_agent in the Quickstart doc don't work because they are missing an import.
run_agent
Need one of:
import agentos
from agentos import run_agent
agentos.run_agent(...)
run_agent(...)
The text was updated successfully, but these errors were encountered:
update docs. Fixes agentos-project#90
c787a93
Merge pull request #93 from andyk/broken_agentos_run
fb120d1
fix bugs in quickstart code. fixes #88, #89, #90
dcd3321
andyk
Successfully merging a pull request may close this issue.
The two example code segments for using
run_agent
in the Quickstart doc don't work because they are missing an import.Need one of:
import agentos
, orfrom agentos import run_agent
and then changeagentos.run_agent(...)
torun_agent(...)
The text was updated successfully, but these errors were encountered: