-
Notifications
You must be signed in to change notification settings - Fork 31
Moving Agents Out of Froggy #44
New issue
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
Conversation
d819abf
to
500eba4
Compare
500eba4
to
3bbcfd8
Compare
scripts/run.py
Outdated
case "pdb_agent": | ||
from agent import PdbAgent as agent_class | ||
case "rewrite_only": | ||
from agent import RewriteOnly as agent_class | ||
case "pdb_after_rewrites": | ||
from agent import PdbAfterRewrites as agent_class |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This assumes we are running the script from the root of the repo. Also, this assumes there's no python library called agent
installed on the system. That's okay with me, I don't know what's the proper to deal with that setup.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe rename agent
-> example_agent
so these example code can coexist with users' agents.
Need to merge #42 first.
AgentZeroShot
->PdbAgent
,AgentZeroShot_NoPDB
->RewriteOnly
,AgentZeroShot_PdbAfterRewrites
->PdbAfterRewrites
.