AI Platform
Configure which AI model powers Prerak's features, and how to connect ChatGPT or Claude Desktop.
How AI Is Used in Prerak
| Feature | AI used for |
|---|---|
| AI agents | Running automated CRM tasks |
| Inbox AI suggestions | Drafting reply suggestions |
| Meeting prep | Summarising contact history |
| Ask Prerak | Answering natural language questions about your CRM |
| Sequence personalisation | Customising email content |
Choosing an AI Model
Workspace admins can configure which AI provider and model to use.
- Go to Settings → AI Platform
- Under Provider, choose:
- OpenAI (GPT-4o, GPT-4 Turbo)
- Anthropic (Claude Sonnet 4.6, Claude Opus 4.6)
- Local / Custom (Ollama, LM Studio, or any OpenAI-compatible endpoint)
- Enter your API key for the chosen provider
- Select the model from the dropdown
- Click Save
You can set different models for different features (e.g., fast/cheap model for suggestions, powerful model for agents).
Reasoning Mode
For complex tasks (agents, analysis), you can enable extended reasoning:
- Go to Settings → AI Platform → Advanced
- Toggle Reasoning Mode for supported models (Claude Sonnet 4.6, Claude Opus 4.6, or OpenAI o1/o3)
- Set a reasoning budget (token limit for thinking)
Reasoning mode is slower and costs more tokens but produces significantly better results for multi-step logic.
Connecting ChatGPT
Use ChatGPT to talk to your Prerak CRM in natural language.
- Get your API key: Settings → API Keys → Create Key (read-write scope)
- In ChatGPT, open the GPT store and search for Prerak
- Add the Prerak GPT
- In the setup screen, paste your API key
- Start chatting:
"How many deals do I have closing this month?" "Create a task for me to follow up with Jane Chen tomorrow"
Connecting Claude Desktop
- Get your API key: Settings → API Keys → Create Key
- Open Claude Desktop → Settings → MCP Servers
- Click Add Server and enter:
{ "name": "Prerak", "url": "https://mcp.prerak.io", "apiKey": "pk_live_your_key_here" } - Restart Claude Desktop
- Start a new conversation — Claude will now have access to your CRM
Local AI Server (Privacy-First Option)
For data-sensitive workspaces, you can run a local LLM:
- Install Ollama or LM Studio on your machine or server
- Pull a model:
ollama pull llama3 - In Prerak: Settings → AI Platform → Provider → Local / Custom
- Enter the base URL:
http://localhost:11434(Ollama default) - Select the model name
- Click Save
With a local server, AI data never leaves your network. Contact your workspace admin or Prerak support for detailed local server setup assistance.
AI Credit Usage
AI usage is metered based on tokens consumed (not API calls).
- View current usage: Settings → Billing → AI Usage
- Each plan includes a monthly token allowance
- Exceeding the allowance: either upgrade, or AI features pause until the next billing cycle
Troubleshooting
AI suggestions not appearing:
- Check that an API key is saved in Settings → AI Platform
- Verify the API key is valid (test it in the provider's dashboard)
- Check billing — you may have exceeded your token limit
Slow responses from agents:
- Reasoning mode significantly increases response time
- Try switching to a faster model for non-critical tasks
Local server not connecting:
- Ensure Ollama/LM Studio is running (
ollama serve) - Check the base URL includes port:
http://localhost:11434 - Ensure your firewall allows Prerak server to reach the local URL