Small demo scripts for the SHARCNET Brine OpenAI-compatible API.
Each script does two things:
- Lists available models with
GET /models. - Asks the Gemma model: "In two sentences, explain what high performance computing is."
Either edit the variables near the top of each script, or export them in your shell:
export BRINE_BASE_URL="https://brine.example.org/v1"
export BRINE_API_KEY="paste-your-access-key-here"
export BRINE_MODEL="gemma-4-31B-it"BRINE_MODEL is optional. The default is gemma-4-31B-it.
cd curl
./list-models-and-ask-gemma.shcd python
uv run --with requests list_models_and_ask_gemma.pyRequires Node.js 18+.
cd javascript
node list-models-and-ask-gemma.mjs- Treat
BRINE_API_KEYas a secret. - Do not submit Sensitive Data to SHARCNET Brine during the pilot.