pip install jupyter
pip install ipykernel
python -m ipykernel install --user --name=python3
jupyter kernelspec list
and you should see python3
in the listThe recommended way to run the workflow is to use the Agent Chatroom, which provides a chatroom UI to interact with the agents in the workflow.
To run the chatroom, cd to the cloned repo and run the following command:
dotnet run
A chatroom UI will be started at http://localhost:50001, and you can interact with the agents in dotnet-interactive-chatroom
channel.
stateDiagram
[*] --> create_task@user
create_task@user--> write_code@coder
create_task@user --> not_code_task@assistant
write_code@coder --> review_code@user
review_code@user --> run_code@runner
review_code@user --> fix_comment@coder
fix_comment@coder --> review_code@user
run_code@runner --> succeed@assistant
run_code@runner --> fail@assistant
run_code@runner --> fix_code@coder
fix_code@coder --> review_code@user
fail@assistant --> [*]
succeed@assistant --> [*]
not_code_task@assistant --> [*]