Skip to content

API Reference

This section contains the automatically generated API reference for the project.

Core Module

mlops.core

Core functionality module.

add(a, b)

Add two numbers.

Parameters:

Name Type Description Default
a int

First number

required
b int

Second number

required

Returns:

Type Description
int

Sum of a and b

Source code in src/mlops/core.py
def add(a: int, b: int) -> int:
    """Add two numbers.

    Args:
        a: First number
        b: Second number

    Returns:
        Sum of a and b
    """
    return a + b