About NVIDIA builder stack

NVIDIA gives your team an open-model layer for the hackathon: its Nemotron family of open models (open weights, data, and recipes), available free through OpenRouter's unified API. Built for agentic AI with reasoning—the kind of multi-step, tool-using workflows legaltech teams tend to prototype.

It's a simple REST API, and the Friday workshop walks you through onboarding so you arrive Saturday ready to build, not configure.

<aside> <img src="notion://custom_emoji/9067698e-8c48-4c31-9814-0f22ae0539d7/378c01c2-41b2-802a-941e-007a5d32fd71" alt="notion://custom_emoji/9067698e-8c48-4c31-9814-0f22ae0539d7/378c01c2-41b2-802a-941e-007a5d32fd71" width="40px" />

Pre-hackathon workshop: Building with NVIDIA

</aside>

👀 Why it's useful at LLMxLaw Hackathon

Some ideas on where to use the NVIDIA stack:

🔑 How access works: self-serve

There's nothing to install—you just need to create a free OpenRouter account to call the Nemotron :free endpoints. Set the model string (e.g. nvidia/nemotron-3-super-120b-a12b:free) and your OpenRouter key, and you're ready to go.

You’ll be guided through the setup on the Friday workshop: Building with NVIDIA.

👉 Get started!

It's a plain REST API, so any HTTP client or SDK works. A minimal call to a free Nemotron model on OpenRouter:

curl <https://openrouter.ai/api/v1/chat/completions> \
  -H "Authorization: Bearer $OPENROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "nvidia/nemotron-3-super-120b-a12b:free",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

For build.nvidia.com, open any model on the catalog and copy the ready-made code snippet shown on its page; it includes the exact endpoint and model string.

✅ Before the hack: your 3-step prep

Save time at the hackathon and get familiar with NVIDIA AI before you arrive!

  1. Create your account: create a free OpenRouter account.
  2. Send one test call to a Nemotron :free model so you know your key works and the setup feels familiar.