Small demo scripts for the SHARCNET Brine OpenAI-compatible API.
Each script does two things:
- Lists available models with
GET /models. - Asks DeepSeek: "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="DeepSeek-V4-Flash-0731"BRINE_MODEL is optional. The default is DeepSeek-V4-Flash-0731.
cd curl
./list-models-and-ask-deepseek.shcd python
uv run --with requests list_models_and_ask_deepseek.py
# Interactive microphone transcription
uv run transcribe_microphone.pyRequires Node.js 18+.
cd javascript
node list-models-and-ask-deepseek.mjsSee model-cards/README.md for public details about currently served models, including context limits and tool support.
- Treat
BRINE_API_KEYas a secret. - Do not submit Sensitive Data to SHARCNET Brine during the pilot.