AI Tools for Interview
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
- Claude
- Gemini
- Llama
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 AI answers to technical questions with candidates to assess their critical thinking processes
- Allow candidates to use AI 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 AI output will be saved for review in playback mode.
ℹ️ Want more information on how to use the integration? Checkout the demonstration video on YouTube.
AI modes
✅ The AI Assistant will automatically detect the proper context of your question, no matter what mode you’re in.
Ask mode will allow you to prompt the AI assistant to answer your requests, but won’t allow the assistant any write-access to the code.
To allow the AI assistant the ability to change the code (including the file structure), you’ll need to enable Edit mode.
⏰ Coming soon: Plan mode
AI “plan mode” is when the AI first outlines a clear step-by-step approach to a task instead of jumping straight to the answer. This helps ensure better results by making the process more structured, transparent, and easier to review before execution.
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



