Colab notebook generated by "Use this model" fails with HF Router

#19
by OMCHOKSI108 - opened

The autogenerated notebook from "Use this model -> Google Colab"
uses:

base_url="https://router.huggingface.co/v1"
model="WeiboAI/VibeThinker-3B"

However the model currently has:

inference_provider_mapping=None

and requests fail with:

BadRequestError:
Model not supported by provider hf-inference

The notebook should either:

  1. Use local Transformers inference
  2. Use vLLM example
  3. Hide the HF Router example when no provider is available

Thanks.

WeiboAI org

Thanks for catching this — you are right.

The current model is not available through the HF Router / hf-inference provider, so the autogenerated “Use this model → Google Colab” notebook can fail with that error. That example is generated by the Hugging Face UI, not the inference setup we currently recommend.

For now, please use local Transformers or vLLM inference instead.

Sign up or log in to comment