Get Started in 15 Minutes
1. Create an Account
2. Select or Upload AI Model
3. Define Benchmark Scenario
4. Run Benchmark
```python
# Sample: Upload model and run benchmark
from tao_bench import TaoBench
bench = TaoBench(api_key='YOUR_API_KEY')
bench.upload_model('model_path')
bench.define_scenario('custom_scenario.json')
results = bench.run()
print(results)
```