releases.shpreview

v0.34.5

[v0.34.5]: Welcoming Scaleway as Inference Providers!

$npx -y @buildinternet/releases show rel_Nyjmtgd2bVSPz1mJLFQVq

Full Changelog: https://github.com/huggingface/huggingface_hub/compare/v0.34.4...v0.34.5

⚡ New provider: Scaleway

[!Tip] All supported Scaleway models can be found here. For more details, check out its documentation page.

Scaleway is a European cloud provider, serving latest LLM models through its Generative APIs alongside a complete cloud ecosystem.

from huggingface_hub import InferenceClient

client = InferenceClient(provider="scaleway")

completion = client.chat.completions.create(
    model="Qwen/Qwen3-235B-A22B-Instruct-2507",
    messages=[
        {
            "role": "user",
            "content": "What is the capital of France?"
        }
    ],
)

print(completion.choices[0].message)
  • feat: add scaleway inference provider by @Gnoale in #1925

Fetched April 7, 2026