AI Tools
Last updated on • Disponible en Français
Using AI Assist
✅ Your account administrator can make AI Assist available in pads by default in the Organization Settings. You can also turn this feature on or off for an individual pad in the Pad Settings by clicking on the settings icon ⚙️ at the bottom left of the screen.
You and
- GPT 4o-mini
- GPT-5
- Claude Haiku 3.5
- Claude Sonnet 4
- Gemini 2.5 Pro
- Llama 4 Maverick
To use it, simply click on the AI Assist tab, select your language model, and enter your prompt.
Some ways you can use the integration:
- Have candidates showcase their prompt engineering skills
- Review ChatGPT answers to technical questions with candidates to assess their critical thinking processes
- Allow candidates to use ChatGPT like they would any other tool to solve your questions
- Generate test data
- Create starter code in different programming languages
✅ All pad users’ prompts and ChatGPT output will be saved for review in playback mode.
ℹ️ Want more information on how to use the integration? Checkout the demonstration video on YouTube.
Include Code in Context
To further understand a candidate’s ability to use generative AI, you can also enable Include Code in Context in the AI Assist window.
This allows CoderPad’s AI assistant to read the code in the IDE, similar to tools like GitHub CoPilot or Cursor.
Add other AI tools
✅As of now, there is no way to persist Claude’s or Codex’s installation from a question to a pad. So you’ll need to install it for each individual interview pad for which you want to use it.
⚠️You’ll need your own Anthropic or Codex account and API key to get started.
Anthropic’s Claude
To install Claude in the shell you can either use curl (i.e. curl -fsSL https://claude.ai/install.sh | bash), or run the following commands:
mkdir ~/.npm-globalnpm config set prefix '~/.npm-global'echo 'export PATH=$HOME/.npm-global/bin:$PATH' >> ~/.bashrcecho 'export SHELL=/bin/bash' >> ~/.bashrcsource ~/.bashrcnpm install -g @anthropic-ai/claude-codesed -i '1s|.*|#!/usr/bin/env node|' $(npm root -g)/@anthropic-ai/claude-code/cli.js- Run
claude --versionto verify installation.
Once installation is complete, run claude in the command line, and you’ll receive instructions for set-up, including adding your API key.
You can then get started using Claude to review and edit your code.
Codex
Just like Claude, run the following commands:
mkdir ~/.npm-globalnpm config set prefix '~/.npm-global'echo 'export PATH=$HOME/.npm-global/bin:$PATH' >> ~/.bashrcecho 'export SHELL=/bin/bash' >> ~/.bashrcsource ~/.bashrcnpm i -g @openai/codex



