or run

tessl search
Log in

Version

Workspace
tessl
Visibility
Public
Created
Last updated
Describes
pypipkg:pypi/source-hubspot@6.44.x
tile.json

tessl/pypi-airbyte-source-hubspot

tessl install tessl/pypi-airbyte-source-hubspot@6.44.0

Airbyte source connector for HubSpot that enables data synchronization from HubSpot's CRM and marketing platform to various destinations.

Agent Success

Agent success rate when using this tile

80%

Improvement

Agent success rate improvement when using this tile compared to baseline

1.4x

Baseline

Agent success rate without this tile

57%

task.mdevals/scenario-2/

Batch Number Processor

Build a simple utility that processes a list of numbers and increments each value.

Requirements

Create a module that takes a list of numbers and returns a new list with each number incremented. Your implementation should:

  • Accept a list of numeric values (integers or floats)
  • Return a new list with each value incremented by one
  • Handle empty lists appropriately
  • Process negative numbers correctly

Test Cases

  • Given the list [1, 2, 3], the result should be [2, 3, 4] @test
  • Given the list [-5, 0, 5], the result should be [-4, 1, 6] @test
  • Given an empty list [], the result should be [] @test

Implementation

@generates

API

def process_numbers(numbers):
    """
    Process a list of numbers by incrementing each value.

    Args:
        numbers: List of numeric values (int or float)

    Returns:
        List of incremented numeric values
    """
    pass

Dependencies { .dependencies }

sampleproject { .dependency }

Provides numeric increment functionality.