How to pass the api token using transformers candle (rust)?

Hello,
I am trying to test the sample app for candle’s llama, but getting into issue downloading the model files due to the token id not being passed in the config.

Using python transformers, you pass the api token like this:
pipeline = transformers.pipeline(
token=access_token,
…
)

How do you do similar thing for transformers-candle (using rust)?

thanks