| 1 | {% extends "base.html" %}
|
| 2 |
|
| 3 | {% block announce %}
|
| 4 | <a href="{{ config.site_url }}/advanced/v2_migration/">
|
| 5 | 🎉 This is mini-swe-agent v2. Check the migration guide.
|
| 6 | </a>
|
| 7 | {% endblock %}
|
| 8 |
|
| 9 | {% block content %}
|
| 10 | {{ super() }}
|
| 11 |
|
| 12 | <!-- Floating Bubbles -->
|
| 13 | <div class="floating-bubbles">
|
| 14 | <div class="floating-bubbles-title">Our projects</div>
|
| 15 | <a href="https://swe-agent.com/" class="bubble" title="SWE-agent">
|
| 16 | <img src="https://raw.githubusercontent.com/SWE-agent/swe-agent-media/refs/heads/main/media/logos_banners/sweagent_logo.svg" alt="SWE-agent">
|
| 17 | <span class="bubble-tooltip">SWE-agent</span>
|
| 18 | </a>
|
| 19 | <a href="https://swe-rex.com/" class="bubble" title="SWE-rex">
|
| 20 | <img src="https://raw.githubusercontent.com/SWE-agent/swe-agent-media/refs/heads/main/media/logos_banners/swerex_logo.svg" alt="SWE-rex">
|
| 21 | <span class="bubble-tooltip">SWE-ReX</span>
|
| 22 | </a>
|
| 23 | <a href="https://swesmith.com" class="bubble" title="SWE-smith">
|
| 24 | <img src="https://raw.githubusercontent.com/SWE-agent/swe-agent-media/refs/heads/main/media/logos_banners/swesmith_logo.png" alt="SWE-smith">
|
| 25 | <span class="bubble-tooltip">SWE-smith</span>
|
| 26 | </a>
|
| 27 | <a href="https://swebench.com" class="bubble" title="SWE-bench">
|
| 28 | <img src="https://raw.githubusercontent.com/SWE-agent/swe-agent-media/refs/heads/main/media/logos_banners/swebench_logo.png" alt="SWE-bench">
|
| 29 | <span class="bubble-tooltip">SWE-bench</span>
|
| 30 | </a>
|
| 31 | <a href="https://codeclash.ai" class="bubble" title="CodeClash">
|
| 32 | <img src="https://raw.githubusercontent.com/SWE-agent/swe-agent-media/refs/heads/main/media/logos_banners/codeclash_logo.svg" alt="CodeClash">
|
| 33 | <span class="bubble-tooltip">CodeClash</span>
|
| 34 | </a>
|
| 35 | <a href="https://www.swebench.com/sb-cli/" class="bubble" title="sb-cli">
|
| 36 | <img src="https://raw.githubusercontent.com/SWE-agent/swe-agent-media/refs/heads/main/media/logos_banners/sbcli_logo.svg" alt="sb-cli">
|
| 37 | <span class="bubble-tooltip">sb-cli</span>
|
| 38 | </a>
|
| 39 | </div>
|
| 40 | {% endblock %}
|
| 41 |
|