tessl install tessl/pypi-influxdb-client@1.49.0Comprehensive Python client library for InfluxDB 2.x with sync/async APIs for writing, querying, and managing time series data.
Agent Success
Agent success rate when using this tile
82%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.19x
Baseline
Agent success rate without this tile
69%
{
"context": "This evaluation assesses how effectively the engineer uses the influxdb-client package's field type customization capability to write sensor data with explicit numeric type specifications (int, uint, float) to prevent schema conflicts.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Point.from_dict usage",
"description": "Uses Point.from_dict() method to create data points from dictionary structures",
"max_score": 25
},
{
"name": "field_types parameter",
"description": "Correctly uses the field_types parameter to specify field type mappings (e.g., {'temperature': 'int', 'counter': 'uint', 'pressure': 'float'})",
"max_score": 35
},
{
"name": "Signed integer type",
"description": "Specifies 'int' type for the temperature field to handle signed integer values",
"max_score": 15
},
{
"name": "Unsigned integer type",
"description": "Specifies 'uint' type for the counter field to handle unsigned integer values",
"max_score": 15
},
{
"name": "Float type",
"description": "Specifies 'float' type for the pressure field to handle floating-point values",
"max_score": 10
}
]
}