|
| 1 | +{% extends "base.html" %} |
| 2 | +{% block title %}Subscription Plan Details{% endblock %} |
| 3 | + |
| 4 | +{% block content %} |
| 5 | +<div class="container mx-auto p-6"> |
| 6 | + <h1 class="text-3xl font-bold mb-4">Subscription Plan Details for Your Challenge on EvalAI</h1> |
| 7 | + <p class="mb-4">Hi {{ host_name }},</p> |
| 8 | + <p class="mb-6">Thank you for your interest in hosting your challenge on EvalAI. We're excited to support your work.</p> |
| 9 | + |
| 10 | + <p class="mb-4">We offer <strong>4 plans</strong> based on the compute needs of challenge hosts. Each plan is a monthly subscription (managed via Stripe) with no long-term commitment—you can cancel anytime once your challenge concludes. Stripe accepts all major payment methods and provides monthly receipts.</p> |
| 11 | + <p class="mb-6">Each plan includes one always-on worker to handle submissions (except for the Remote Evaluation Plan, which relies on your own infrastructure). If you expect higher submission volume—especially near deadlines—we can scale easily by adding additional workers. These extra workers will be billed separately according to your selected plan.</p> |
| 12 | + |
| 13 | + <h2 class="text-2xl font-semibold mt-8 mb-4">Available Plans</h2> |
| 14 | + <div class="overflow-x-auto"> |
| 15 | + <table class="table-auto w-full border-collapse"> |
| 16 | + <thead> |
| 17 | + <tr class="bg-gray-200"> |
| 18 | + <th class="px-4 py-2 border">Feature</th> |
| 19 | + <th class="px-4 py-2 border">Essentials<br><span class="text-sm">$125/mo</span></th> |
| 20 | + <th class="px-4 py-2 border">Core<br><span class="text-sm">$250/mo</span></th> |
| 21 | + <th class="px-4 py-2 border">Advanced<br><span class="text-sm">$850/mo</span></th> |
| 22 | + <th class="px-4 py-2 border">Remote Evaluation<br><span class="text-sm">$100/mo</span></th> |
| 23 | + </tr> |
| 24 | + </thead> |
| 25 | + <tbody> |
| 26 | + <tr class="hover:bg-gray-50"> |
| 27 | + <td class="px-4 py-2 border font-medium">Compute Tier</td> |
| 28 | + <td class="px-4 py-2 border">0.5 vCPU, 1–4 GB RAM</td> |
| 29 | + <td class="px-4 py-2 border">1 vCPU, 2–4 GB RAM</td> |
| 30 | + <td class="px-4 py-2 border">1 vCPU, 4–16 GB RAM</td> |
| 31 | + <td class="px-4 py-2 border">Bring your own compute</td> |
| 32 | + </tr> |
| 33 | + <tr class="hover:bg-gray-50"> |
| 34 | + <td class="px-4 py-2 border font-medium">Task Runtime</td> |
| 35 | + <td class="px-4 py-2 border">24/7 for 30 days</td> |
| 36 | + <td class="px-4 py-2 border">24/7 for 30 days</td> |
| 37 | + <td class="px-4 py-2 border">24/7 for 30 days</td> |
| 38 | + <td class="px-4 py-2 border">N/A</td> |
| 39 | + </tr> |
| 40 | + <tr class="hover:bg-gray-50"> |
| 41 | + <td class="px-4 py-2 border font-medium">Ephemeral Storage</td> |
| 42 | + <td class="px-4 py-2 border">20 GB (expandable)</td> |
| 43 | + <td class="px-4 py-2 border">20 GB (expandable)</td> |
| 44 | + <td class="px-4 py-2 border">20 GB (expandable)</td> |
| 45 | + <td class="px-4 py-2 border">N/A</td> |
| 46 | + </tr> |
| 47 | + <tr class="hover:bg-gray-50"> |
| 48 | + <td class="px-4 py-2 border font-medium">Concurrent Evaluations</td> |
| 49 | + <td class="px-4 py-2 border">1 container</td> |
| 50 | + <td class="px-4 py-2 border">1 container</td> |
| 51 | + <td class="px-4 py-2 border">1 container</td> |
| 52 | + <td class="px-4 py-2 border">N/A</td> |
| 53 | + </tr> |
| 54 | + <tr class="hover:bg-gray-50"> |
| 55 | + <td class="px-4 py-2 border font-medium">Custom Dependencies</td> |
| 56 | + <td class="px-4 py-2 border">✔️</td> |
| 57 | + <td class="px-4 py-2 border">✔️</td> |
| 58 | + <td class="px-4 py-2 border">✔️</td> |
| 59 | + <td class="px-4 py-2 border">N/A</td> |
| 60 | + </tr> |
| 61 | + <tr class="hover:bg-gray-50"> |
| 62 | + <td class="px-4 py-2 border font-medium">Submissions + Leaderboard Hosting</td> |
| 63 | + <td class="px-4 py-2 border">✔️</td> |
| 64 | + <td class="px-4 py-2 border">✔️</td> |
| 65 | + <td class="px-4 py-2 border">✔️</td> |
| 66 | + <td class="px-4 py-2 border">✔️</td> |
| 67 | + </tr> |
| 68 | + <tr class="hover:bg-gray-50"> |
| 69 | + <td class="px-4 py-2 border font-medium">EvalAI Hosts the Evaluation</td> |
| 70 | + <td class="px-4 py-2 border">✔️</td> |
| 71 | + <td class="px-4 py-2 border">✔️</td> |
| 72 | + <td class="px-4 py-2 border">✔️</td> |
| 73 | + <td class="px-4 py-2 border">❌</td> |
| 74 | + </tr> |
| 75 | + </tbody> |
| 76 | + </table> |
| 77 | + </div> |
| 78 | + |
| 79 | + <h2 class="text-2xl font-semibold mt-8 mb-4">Plan Subscription Links</h2> |
| 80 | + <ul class="list-disc list-inside space-y-2"> |
| 81 | + <li><a href="https://buy.stripe.com/9B600i8Zt2PI8gA8srcEw01" class="text-blue-600 underline">Essentials Plan</a></li> |
| 82 | + <li><a href="https://buy.stripe.com/9B65kCcbF4XQdAUbEDcEw03" class="text-blue-600 underline">Core Plan</a></li> |
| 83 | + <li><a href="https://buy.stripe.com/28E28q1x1gGy40kcIHcEw06" class="text-blue-600 underline">Advanced Plan</a></li> |
| 84 | + <li><a href="https://buy.stripe.com/eVqfZg7Vp75Y8gA6kjcEw07" class="text-blue-600 underline">Remote Evaluation Plan</a></li> |
| 85 | + </ul> |
| 86 | + |
| 87 | + <p class="mt-6">If you're unsure about which plan is the best fit for your challenge, we recommend starting with the <strong>Essentials plan</strong> and upgrading as needed.</p> |
| 88 | + <p class="mt-4">Please feel free to reach out if you have any questions or would like to discuss further.</p> |
| 89 | + <p class="mt-6">Looking forward to supporting your challenge!<br>EvalAI Team</p> |
| 90 | +</div> |
| 91 | +{% endblock %} |
0 commit comments