File size: 1,997 Bytes
1a17759 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | ---
# Agent Card
agent_name: ""
version: ""
developers: ""
license: ""
framework: ""
repository: ""
models:
- ""
tags:
- agent
---
# {{ agent_name }}
> One-line description of what this agent does.
## Agent Details
- **Name**: {{ agent_name }}
- **Version**: {{ version }}
- **Developers**: {{ developers }}
- **Framework**: [{{ framework }}]({{ repository }})
- **License**: {{ license }}
## Architecture
<!-- Describe how the agent works. What makes it different from other agents? -->
### Planning
<!-- How does the agent decide what to do next? (e.g., ReAct, chain-of-thought, tree search) -->
### Memory
<!-- What context does the agent maintain across steps? (e.g., conversation history, scratchpad, retrieved docs) -->
### Tool Use
<!-- How does the agent interact with tools/actions? (e.g., function calling, code generation, CLI) -->
### Error Recovery
<!-- How does the agent handle failures? (e.g., retry, replan, fallback) -->
### Subagents
<!-- Does the agent delegate to other agents? If so, which and when? -->
## Models
<!-- Which LLMs does the agent use, and for what purpose? -->
| Role | Model | Purpose |
|------|-------|---------|
| Main | | Primary reasoning and action selection |
## Supported Environments
<!-- What domains, benchmarks, or task types does this agent handle? -->
-
## Evaluation Results
<!-- Summary of benchmark performance. Link to full results on the leaderboard. -->
| Benchmark | Score | Avg Cost | Avg Steps |
|-----------|-------|----------|-----------|
| | | | |
**Full results**: [Open Agent Leaderboard](https://huggingface.co/spaces/open-agent-leaderboard/leaderboard)
## Cost Profile
<!-- Typical cost per task, and what drives cost (model calls, retries, long sessions). -->
## Limitations
<!-- Known failure modes, unsupported scenarios, edge cases. Be honest -- this helps users make informed decisions. -->
## How to Run
<!-- Installation and basic usage instructions. -->
```bash
# Installation
# Usage
```
|