diff --git a/README.md b/README.md index 6252dd4..56c76cb 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,42 @@ The content of the [tag](https://github.com/soonchain/4AI-Agent-Space/edit/main/ } ``` +## ⚙️ Use Case Example: Task Execution Flow + +This example demonstrates how 4AI Agent Space works step-by-step in an actual scenario. + +1. **Task Initiation (Pioneer)** + - The Pioneer sends a task request: + ```json + { + "task": "Analyze BSC transaction trends", + "tag": [2, "bsc"] + } + ``` + +2. **Agent Selection (Root Agent)** + - The Root Agent analyzes the tags and selects the most suitable agents: + - Agent A (tag: 2) + - Agent D (tag: "bsc") + +3. **Task Execution (Agents)** + - Both agents perform their tasks independently and return their results. + +4. **Evaluation (Root Agent)** + - The Root Agent compares the results and selects the one with the highest accuracy or reliability. + +5. **Result Return (Pioneer)** + - The final processed result is returned to the Pioneer: + ```json + { + "summary": "Transaction volume on BSC increased by 12% last week.", + "confidence": 0.93 + } + ``` + +> ✅ This example shows how the system dynamically selects, executes, and evaluates multiple agents to provide the best possible result automatically. + + ## How to Contribute Thank you for your interest in contributing! If you would like to contribute, please follow these steps: 1. **Fork the repository**.