Together hosts the open-weight catalogue behind an OpenAI-compatible endpoint without forcing you to operate vLLM yourself. Useful when you want open-weight quality plus reproducibility but do not want to maintain GPU infrastructure. The pricing model is straightforward per-token across the catalogue.
app.yaml1brain:2 provider: openai_compat3 model: meta-llama/Llama-3.3-70B-Instruct-Turbo4 config:5 base_url: "https://api.together.xyz/v1"6 api_key: "{{env.TOGETHER_API_KEY}}"7 temperature: 0.2Together AIdoesn't have a first-class catalog entry yet. Configure it inline using env templates, the same way the blog examples show. Native catalog support is on the roadmap.
TOGETHER_API_KEYTogether AI API key# add to ~/.digitorn/.env
TOGETHER_API_KEY=...# 1. install the runtime
curl -sSL https://digitorn.ai/install | sh
# 2. drop your Together AI key in the env file
echo 'TOGETHER_API_KEY=...' >> ~/.digitorn/.env
# 3. install a starter agent and chat
digitorn install hub://digitorn/digitorn-code
digitorn chat digitorn-codeEngineering notes from the Digitorn team. No marketing, no launch announcements, no "10 prompts that will change your life". Just the things we write that we'd want to read.