-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
96 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
from human_in_the_loop.additional_services.human_in_the_loop import ( | ||
human_service, | ||
) | ||
from human_in_the_loop.agent_services.funny_agent import agent_server | ||
from human_in_the_loop.core_services.control_plane import control_plane | ||
from human_in_the_loop.core_services.message_queue import message_queue | ||
from llama_agents import ServerLauncher | ||
|
||
# launch it | ||
launcher = ServerLauncher( | ||
[agent_server, human_service], | ||
control_plane, | ||
message_queue, | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
launcher.launch_servers() |