From 9d3568ce0440ff3fae356c826da52f8af299e51c Mon Sep 17 00:00:00 2001 From: Pavan Kumar <66913595+ascender1729@users.noreply.github.com> Date: Tue, 10 Jun 2025 15:22:48 +0000 Subject: [PATCH] [cli][feature] Move example YAML to examples directory --- examples/cli_examples/agents.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 examples/cli_examples/agents.yaml diff --git a/examples/cli_examples/agents.yaml b/examples/cli_examples/agents.yaml new file mode 100644 index 00000000..e3af9764 --- /dev/null +++ b/examples/cli_examples/agents.yaml @@ -0,0 +1,11 @@ +# Test configuration for listing agents via CLI +# This file demonstrates a simple multi-agent setup for testing purposes +agents: + - agent_name: "Test-Agent-1" + model_name: "gpt-4o-mini" + system_prompt: "You are Test-Agent-1, designed to handle Task 1 efficiently." + task: "Task 1: Analyze provided text for sentiment and key themes." + - agent_name: "Test-Agent-2" + model_name: "gpt-4o-mini" + system_prompt: "You are Test-Agent-2, specialized in processing and responding to Task 2." + task: "Task 2: Generate a concise summary of the provided information." \ No newline at end of file