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. Obtain an API key from your mit.nonlocally.org account settings.

from openai import OpenAI

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

resp = client.chat.completions.create(
    model="claude-sonnet-4-20250514",
    messages=[{"role": "user", "content": "Explain Bell nonlocality."}],
)
print(resp.choices[0].message.content)

Available models

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

ModelProvider
Loading…