Opik-demo.py
from opik import track

@track
def my_function(x: int) -> int:
    return x + 1

my_function(1)