From 98a0dc3265c97eea4dcf4dc7fbf053d88fc10772 Mon Sep 17 00:00:00 2001 From: Preston Badeer <467756+pbadeer@users.noreply.github.com> Date: Sat, 27 Jan 2024 13:02:59 -0600 Subject: [PATCH] Correct small typos in system messages (#1410) * Update utils.ts - fix small typo in default system message * Fix typos in system messages --------- Co-authored-by: Preston Badeer <467756+pbadeer@users.noreply.github.com> Co-authored-by: Chi Wang --- samples/apps/autogen-studio/autogenstudio/utils/dbdefaults.json | 2 +- samples/apps/autogen-studio/frontend/src/components/utils.ts | 2 +- samples/apps/autogen-studio/notebooks/groupchat_spec.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/apps/autogen-studio/autogenstudio/utils/dbdefaults.json b/samples/apps/autogen-studio/autogenstudio/utils/dbdefaults.json index e3fd806970ed..4f7c3ff81504 100644 --- a/samples/apps/autogen-studio/autogenstudio/utils/dbdefaults.json +++ b/samples/apps/autogen-studio/autogenstudio/utils/dbdefaults.json @@ -202,7 +202,7 @@ }, "human_input_mode": "NEVER", "max_consecutive_auto_reply": 8, - "system_message": "You are a helpful assistant that can suggest a travel itinerary for a user. You are the primary cordinator who will receive suggestions or advice from other agents (local_assistant, language_assistant). You must ensure that the finally plan integrates the suggestions from other agents or team members. YOUR FINAL RESPONSE MUST BE THE COMPLETE PLAN that ends with the word TERMINATE. " + "system_message": "You are a helpful assistant that can suggest a travel itinerary for a user. You are the primary coordinator who will receive suggestions or advice from other agents (local_assistant, language_assistant). You must ensure that the finally plan integrates the suggestions from other agents or team members. YOUR FINAL RESPONSE MUST BE THE COMPLETE PLAN that ends with the word TERMINATE. " } }, { diff --git a/samples/apps/autogen-studio/frontend/src/components/utils.ts b/samples/apps/autogen-studio/frontend/src/components/utils.ts index caa475ff9ae5..abf5ec914eb3 100644 --- a/samples/apps/autogen-studio/frontend/src/components/utils.ts +++ b/samples/apps/autogen-studio/frontend/src/components/utils.ts @@ -278,7 +278,7 @@ export const sampleWorkflowConfig = (type = "twoagents") => { const groupChatAssistantConfig = Object.assign({}, assistantConfig); groupChatAssistantConfig.name = "groupchat_assistant"; groupChatAssistantConfig.system_message = - "You are a helpful assistant skilled at cordinating a group of other assistants to solve a task. "; + "You are a helpful assistant skilled at coordinating a group of other assistants to solve a task. "; const groupChatFlowSpec: IGroupChatFlowSpec = { type: "groupchat", diff --git a/samples/apps/autogen-studio/notebooks/groupchat_spec.json b/samples/apps/autogen-studio/notebooks/groupchat_spec.json index 21cced7135b7..8aece5c5051a 100644 --- a/samples/apps/autogen-studio/notebooks/groupchat_spec.json +++ b/samples/apps/autogen-studio/notebooks/groupchat_spec.json @@ -56,7 +56,7 @@ }, "human_input_mode": "NEVER", "max_consecutive_auto_reply": 8, - "system_message": "You are a helpful assistant that can suggest a travel itinerary for a user. You are the primary cordinator who will receive suggestions or advice from other agents (local_assistant, language_assistant). You must ensure that the finally plan integrates the suggestions from other agents or team members. YOUR FINAL RESPONSE MUST BE THE COMPLETE PLAN that ends with the word TERMINATE. " + "system_message": "You are a helpful assistant that can suggest a travel itinerary for a user. You are the primary coordinator who will receive suggestions or advice from other agents (local_assistant, language_assistant). You must ensure that the finally plan integrates the suggestions from other agents or team members. YOUR FINAL RESPONSE MUST BE THE COMPLETE PLAN that ends with the word TERMINATE. " } }, {