forked from wise-agents/wise-agents
-
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.
Add description metadata to agents Fixes wise-agents#327
- Loading branch information
Showing
33 changed files
with
386 additions
and
435 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
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
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 |
---|---|---|
@@ -1,53 +1,58 @@ | ||
--- | ||
!wiseagents.agents.ChatWiseAgent | ||
_description: This is an agent that can give suggestion on what to read next | ||
_llm: !wiseagents.llm.OpenaiAPIWiseAgentLLM | ||
_model_name: llama3.1 | ||
_remote_address: http://localhost:11434/v1 | ||
_system_message: You are an english literature expert. The user will provide you with a list of books they have read. Suggest the next 5 books they should read and ask user for their favorite one in this list | ||
_name: LiterateAgent | ||
_transport: !wiseagents.transports.StompWiseAgentTransport | ||
_host: localhost | ||
_port: 61616 | ||
_agent_name: LiterateAgent | ||
metadata: !wiseagents.WiseAgentMetaData | ||
description: This is an agent that can give suggestion on what to read next | ||
llm: !wiseagents.llm.OpenaiAPIWiseAgentLLM | ||
model_name: llama3.1 | ||
remote_address: http://localhost:11434/v1 | ||
system_message: You are an english literature expert. The user will provide you with a list of books they have read. Suggest the next 5 books they should read and ask user for their favorite one in this list | ||
name: LiterateAgent | ||
transport: !wiseagents.transports.StompWiseAgentTransport | ||
host: localhost | ||
port: 61616 | ||
agent_name: LiterateAgent | ||
--- | ||
!custom_agents.PerceivingAgent | ||
_description: This is an agent that can perceive file changes | ||
_name: PerceivingAgent | ||
_file_path: ./books_read.txt | ||
_check_interval: 5 | ||
_destination_agent_name: SequentialCoordinator | ||
_transport: !wiseagents.transports.StompWiseAgentTransport | ||
_host: localhost | ||
_port: 61616 | ||
_agent_name: PerceivingAgent | ||
metadata: !wiseagents.WiseAgentMetaData | ||
description: This is an agent that can perceive file changes | ||
name: PerceivingAgent | ||
file_path: ./books_read.txt | ||
check_interval: 5 | ||
destination_agent_name: SequentialCoordinator | ||
transport: !wiseagents.transports.StompWiseAgentTransport | ||
host: localhost | ||
port: 61616 | ||
agent_name: PerceivingAgent | ||
--- | ||
!custom_agents.ActionAgent | ||
_description: This is an agent that can write a file | ||
_name: ActionAgent | ||
_destination_file_path: ./books_suggested.txt | ||
_transport: !wiseagents.transports.StompWiseAgentTransport | ||
_host: localhost | ||
_port: 61616 | ||
_agent_name: ActionAgent | ||
metadata: !wiseagents.WiseAgentMetaData | ||
description: This is an agent that can write a file | ||
name: ActionAgent | ||
destination_file_path: ./books_suggested.txt | ||
transport: !wiseagents.transports.StompWiseAgentTransport | ||
host: localhost | ||
port: 61616 | ||
agent_name: ActionAgent | ||
--- | ||
!wiseagents.agents.ChatWiseAgent | ||
_description: This is an agent that can give suggestion on what to read next | ||
_llm: !wiseagents.llm.OpenaiAPIWiseAgentLLM | ||
_model_name: llama3.1 | ||
_remote_address: http://localhost:11434/v1 | ||
_system_message: You will receive a preference from the user. Considering the previous books read , the user's preference on your first list of suggestion, suggest the next 3 books they should read. | ||
_name: FinalLiterateAgent | ||
_transport: !wiseagents.transports.StompWiseAgentTransport | ||
_host: localhost | ||
_port: 61616 | ||
_agent_name: FinalLiterateAgent | ||
metadata: !wiseagents.WiseAgentMetaData | ||
description: This is an agent that can give suggestion on what to read next | ||
llm: !wiseagents.llm.OpenaiAPIWiseAgentLLM | ||
model_name: llama3.1 | ||
remote_address: http://localhost:11434/v1 | ||
system_message: You will receive a preference from the user. Considering the previous books read , the user's preference on your first list of suggestion, suggest the next 3 books they should read. | ||
name: FinalLiterateAgent | ||
transport: !wiseagents.transports.StompWiseAgentTransport | ||
host: localhost | ||
port: 61616 | ||
agent_name: FinalLiterateAgent | ||
--- | ||
!wiseagents.agents.SequentialMemoryCoordinatorWiseAgent | ||
_description: This is a coordinator agent | ||
_name: SequentialCoordinator | ||
_agents: ["LiterateAgent", "UserQuestionAgent", "FinalLiterateAgent", "ActionAgent"] | ||
_transport: !wiseagents.transports.StompWiseAgentTransport | ||
_host: localhost | ||
_port: 61616 | ||
_agent_name: SequentialCoordinator | ||
metadata: !wiseagents.WiseAgentMetaData | ||
description: This is a coordinator agent | ||
name: SequentialCoordinator | ||
agents: ["LiterateAgent", "UserQuestionAgent", "FinalLiterateAgent", "ActionAgent"] | ||
transport: !wiseagents.transports.StompWiseAgentTransport | ||
host: localhost | ||
port: 61616 | ||
agent_name: SequentialCoordinator |
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
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
Oops, something went wrong.