How to access inputs from the crew code

Is there a way to access the input array values from the crew code? I’m creating a flow and want to save files from various crews in the same folder, but I want the files to be in a different folder each run. So I run a function that creates a folder with a unique name each run, and then pass that name to all the crews in the input array. But I don’t know how to read the input array in the crew Python code.
Thanks

In main:

crew_inputs = {"my_input": my_value}       
crew_result = (
    MyCrew(my_input=crew_inputs["my_input"])
    .crew()
    .kickoff(inputs=crew_inputs)
)

in mycrew.py:

class MyCrew():
    agents_config = 'config/agents.yaml'
    tasks_config = 'config/tasks.yaml'

    def __init__(self, my_input: str, *args, **kwargs):

        super().__init__(*args, **kwargs)

        self.my_input = my_input
        os.makedirs(f"whatever/{self.my_input}", exist_ok=True)