Skip to content

Commit 548bed4

Browse files
committed
put under line for agents name
1 parent b78999d commit 548bed4

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

src/backend/models/messages_kernel.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ class DataType(str, Enum):
4040
class AgentType(str, Enum):
4141
"""Enumeration of agent types."""
4242

43-
HUMAN= "Human Agent"
44-
HR = "Hr Agent"
45-
MARKETING = "Marketing Agent"
46-
PROCUREMENT = "Procurement Agent"
47-
PRODUCT = "Product Agent"
48-
GENERIC = "Generic Agent"
49-
TECH_SUPPORT= "TechSupport Agent"
50-
GROUP_CHAT_MANAGER = "Group Chat Manager"
51-
PLANNER = "Planner Agent"
43+
HUMAN= "Human_Agent"
44+
HR = "Hr_Agent"
45+
MARKETING = "Marketing_Agent"
46+
PROCUREMENT = "Procurement_Agent"
47+
PRODUCT = "Product_Agent"
48+
GENERIC = "Generic_Agent"
49+
TECH_SUPPORT= "TechSupport_Agent"
50+
GROUP_CHAT_MANAGER = "Group_Chat_Manager"
51+
PLANNER = "Planner_Agent"
5252

5353
# Add other agents as needed
5454

src/backend/tools/generic_tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_name": "Generic Agent",
2+
"agent_name": "Generic_Agent",
33
"system_message": "You are a Generic agent that can help with general questions and provide basic information. You can search for information and perform simple calculations.",
44
"tools": [
55
{

src/backend/tools/hr_tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_name": "HrAgent",
2+
"agent_name": "Hr_Agent",
33
"system_message": "You are an AI Agent. You have knowledge about HR (e.g., human resources), policies, procedures, and onboarding guidelines.",
44
"tools": [
55
{

src/backend/tools/human_tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_name": "Human Agent",
2+
"agent_name": "Human_Agent",
33
"system_message": "You are representing a human user in the conversation. You handle interactions that require human feedback or input, such as providing clarification, approving plans, or giving feedback on steps.",
44
"tools": [
55
{

src/backend/tools/marketing_tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_name": "Marketing Agent",
2+
"agent_name": "Marketing_Agent",
33
"system_message": "You are a Marketing agent. You specialize in marketing strategy, campaign development, content creation, and market analysis. You help create effective marketing campaigns, analyze market data, and develop promotional content for products and services.",
44
"tools": [
55
{"name":"create_marketing_campaign","description":"Create a new marketing campaign.","parameters":[{"name":"campaign_name","description":"Name of the campaign","type":"string","required":true},{"name":"target_audience","description":"Target audience","type":"string","required":true},{"name":"budget","description":"Budget for the campaign","type":"number","required":true}],"response_template":"Marketing campaign '{campaign_name}' created targeting '{target_audience}' with a budget of ${budget:.2f}."},

src/backend/tools/planner_tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_name": "Planner Agent",
2+
"agent_name": "Planner_Agent",
33
"system_message": "You are a Planner agent responsible for creating and managing plans. You analyze tasks, break them down into steps, and assign them to the appropriate specialized agents.",
44
"tools": [
55
{

src/backend/tools/procurement_tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_name": "Procurement Agent",
2+
"agent_name": "Procurement_Agent",
33
"system_message": "You are a Procurement agent. You specialize in purchasing, vendor management, supply chain operations, and inventory control. You help with creating purchase orders, managing vendors, tracking orders, and ensuring efficient procurement processes.",
44
"tools": [
55
{

src/backend/tools/product_tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_name": "Product Agent",
2+
"agent_name": "Product_Agent",
33
"system_message": "You are a Product agent. You have knowledge about product management, development, and compliance guidelines. When asked to call a function, you should summarize back what was done.",
44
"tools": [
55
{

src/backend/tools/tech_support_tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_name": "TechSupportAgent",
2+
"agent_name": "Tech_Support_Agent",
33
"system_message": "You are a Tech Support agent. You specialize in IT troubleshooting, system administration, network issues, software installation, and general technical support. You help users resolve technology-related problems and provide technical guidance.",
44
"tools": [
55
{

0 commit comments

Comments
 (0)