14 lines
No EOL
272 B
Python
14 lines
No EOL
272 B
Python
import mind2web_runner
|
|
print("IMPORTED EVAL_AGENT =", eval_agent.__file__)
|
|
|
|
from mind2web_runner import run_agent_task
|
|
|
|
|
|
def main():
|
|
result = run_agent_task("открой nba.com")
|
|
print("==== RESULT ====")
|
|
print(result)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |