Unexpected keyword argument 'sampling_strategy' with TrainingArguments

I am using TrainingArguments successfully so far. However by adding the argument sampling_strategy, as per the documentation (https://huggingface.co/docs/setfit/en/reference/trainer#setfit.TrainingArguments.sampling_strategy) I get the following error:
training_args = TrainingArguments(output_dir=“models/vit/new_vit”, per_device_train_batch_size=16, evaluation_strategy=“steps”,
TypeError: init() got an unexpected keyword argument ‘sampling_strategy’

I am using PyCharm through anaconda navigator. I have updated transformers package to 4.39.0.dev0 through source and still facing the issue.