measure_download_speed
Measure internet download speed using incremental file sizes up to a specified limit. Returns a dictionary with detailed speed results for accurate performance analysis.
Instructions
Measure download speed using incremental file sizes.
Args:
size_limit: Maximum file size to test (default: 100MB)
Returns:
Dictionary with download speed results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
size_limit | No | 100MB |
Input Schema (JSON Schema)
{
"properties": {
"size_limit": {
"default": "100MB",
"title": "Size Limit",
"type": "string"
}
},
"title": "measure_download_speedArguments",
"type": "object"
}