veritai.org

Think-Free*

AI is massively disruptive to research, yet getting API access for a university group is near-impossible without paying out of pocket. It shouldn’t be this hard. And too much of AI today asks you to trust a black box—I think researchers deserve better. With open weights and formal verification, you can check every claim yourself. Math doesn’t care who you are or where you work. I hope these tools help you think more freely. — Dirk Englund

Sign in with your MIT or Google account.

Resources

API access

The LLM endpoint at llm.nonlocally.org implements the OpenAI API. Use any compatible client.

1. Sign in at mit.nonlocally.org with your MIT or Google account.
2. Go to Settings → Account → API Keys and create a key.
3. Use it with any OpenAI-compatible client:

from openai import OpenAI

client = OpenAI(
    base_url="https://llm.nonlocally.org/v1",
    api_key="sk-...",  # from step 2
)

resp = client.chat.completions.create(
    model="qwen3-235b",
    messages=[{"role": "user", "content": "Explain Bell nonlocality."}],
)
print(resp.choices[0].message.content)
# Or with curl:
curl https://llm.nonlocally.org/v1/chat/completions \
  -H "Authorization: Bearer sk-..." \
  -H "Content-Type: application/json" \
  -d '{"model":"qwen3-235b","messages":[{"role":"user","content":"Hello"}]}'

Available models

From the fleet. Updated by scripts/generate_models_json.py.

ModelProvider
Loading…