iXentBench — Step by step guide for non-technical users
Your API Key is your private key. iXentBench reads it directly from your computer — it is never uploaded, shared or sent anywhere. Think of it like a PIN code: only you have it and only your computer uses it.
The .env file is a simple text file that lives in your ~/ixentbench folder. It stores your API Key so iXentBench knows which AI model to use when you play.
⚠️ It starts with a dot (.) which makes it hidden by default on Mac and Windows. Don't worry — the steps below will show you exactly how to open it.
Open Finder and go to your Home folder.
Click Go in the top menu → Home.
Press Cmd + Shift + . (Command + Shift + dot) to show hidden files.
You will now see the ixentbench folder.
Open the ixentbench folder and find the .env file.
Right click on it → Open With → TextEdit.
Find the line for your AI model (e.g. GOOGLE_API_KEY=)
and paste your key right after the = sign. No spaces.
Press Cmd + S to save the file. Done!
Open File Explorer and go to your user folder.
Type %USERPROFILE% in the address bar and press Enter.
Click View in the top menu → check Hidden items.
You will now see the ixentbench folder.
Open the ixentbench folder and find the .env file.
Right click on it → Open With → Notepad.
Find the line for your AI model (e.g. GOOGLE_API_KEY=)
and paste your key right after the = sign. No spaces.
Press Ctrl + S to save the file. Done!
Open your file manager and enable hidden files.
Usually: View → Show Hidden Files or press Ctrl + H.
Navigate to your Home folder and open the ixentbench folder.
Right click on .env → Open With Text Editor.
Find the line for your AI model and paste your key after the = sign.
Save the file. Done!
Choose the AI model you want to use and get your free API Key from the provider's website.
Once you have your API Key, open your .env file and find the line for your provider. Paste your key directly after the = sign — no spaces.
Wrong: GOOGLE_API_KEY= AIzaSyXXXXX
Space after = is not allowed
Correct examples:
GOOGLE_API_KEY=AIzaSyXXXXX ← Gemini (Google)
ANTHROPIC_API_KEY=sk-ant-XXXXX ← Claude (Anthropic)
OPENAI_API_KEY=sk-XXXXX ← GPT (OpenAI)
GROK_API_KEY=xai-XXXXX ← Grok (xAI)
DEEPSEEK_API_KEY=sk-XXXXX ← DeepSeek
Only fill in the key for the model you want to use. Leave the others empty.
If you prefer to run open-source models (like Llama 3 or Mistral) on your own machine using Ollama or LM Studio, you don't need an API Key. You can pre-configure your local server URL in the .env file.
Correct examples for LOCAL_MODEL_URL:
LOCAL_MODEL_URL=http://localhost:11434/v1 ← Ollama
LOCAL_MODEL_URL=http://localhost:1234/v1 ← LM Studio
LOCAL_MODEL_URL=http://localhost:8080/v1 ← llama.cpp
By setting this, you can run ixentbench play --session XXX without typing the URL in the terminal every time.
You're all set! Your configuration is saved and iXentBench will use it automatically every time you play. You never need to type it again.
Open your terminal, go to ixentlabs.com to create your session, then run:
Need help? Visit ixentlabs.com