Spaces:
Sleeping
Sleeping
Update README
Browse files- agents/README.md +14 -0
agents/README.md
CHANGED
|
@@ -76,4 +76,18 @@ To deploy the agent so it runs automatically every week (Sunday at midnight UTC)
|
|
| 76 |
|
| 77 |
```bash
|
| 78 |
uv run modal deploy agents/modal_agent.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
```
|
|
|
|
| 76 |
|
| 77 |
```bash
|
| 78 |
uv run modal deploy agents/modal_agent.py
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
The structure looks as follows:
|
| 82 |
+
|
| 83 |
+
```mermaid
|
| 84 |
+
flowchart LR
|
| 85 |
+
A1["Retrieval Agent 1"] --> V["Aggregation Agent\n(majority vote)"]
|
| 86 |
+
A2["Retrieval Agent 2"] --> V
|
| 87 |
+
A3["Retrieval Agent 3"] --> V
|
| 88 |
+
V -->|"selected result"| B["Verification Agent"]
|
| 89 |
+
B -->|"structured output: reasoning + verdict"| C{verdict?}
|
| 90 |
+
C -->|true| D["PR Agent"]
|
| 91 |
+
C -->|false| E["Return: no PR"]
|
| 92 |
+
D -->|"structured output: PR result"| F["Return result"]
|
| 93 |
```
|