Troubleshooting
Find solutions to common issues and learn how to get help when you need it.
Need more help? See our Feedback & Community page for how to report bugs and get support.
Common Issues
Application Won’t Start
Reliant doesn’t launch or crashes immediately
Solutions:
macOS Security Block
- Right-click Reliant and select “Open”
- Go to System Settings → Privacy & Security
- Click “Open Anyway” if Reliant is blocked
Check System Requirements
- macOS 11.0 (Big Sur) or later
- 8GB RAM minimum
- 4GB free disk space
Reset Application
# Clear application support rm -rf ~/Library/Application\ Support/reliant # Clear logs rm -rf ~/Library/Logs/ReliantReinstall
Via Homebrew:
brew uninstall --cask reliant && brew install --cask reliantOr manually:
- Delete Reliant from Applications
- Empty Trash
- Download fresh copy from our downloads page
- Reinstall
Backend Connection Issues
“Backend not responding” or “Connection failed”
Solutions:
Check Backend Status
- Look for “reliant” process in Activity Monitor
- Backend should start automatically
- Takes 5-10 seconds to initialize
Port Conflicts
# Check if port is in use lsof -i :8080 # Kill conflicting processes if needed kill -9 [PID]Restart Backend
- Quit Reliant completely (Cmd+Q)
- Wait 10 seconds
- Relaunch Reliant
Firewall Issues
- Check System Settings → Network → Firewall
- Allow incoming connections for Reliant
- Disable VPN temporarily to test
AI Not Responding
Chat works but AI doesn’t respond
Solutions:
Check API Key
- Go to Settings → AI
- Verify key is entered correctly
- Click “Validate” to test connection
- Check API provider status
API Provider Issues
- Check your provider’s status page
- Verify billing is active on provider’s website
- Check rate limits for your tier
- Try a different provider if available
Network Connection
- Verify internet connection
- Check proxy settings
- Disable VPN if using one
- Try different network
Clear Chat
- Start a new chat
- Clear conversation history
- Restart Reliant
Slow Performance
Laggy interface or slow responses
Solutions:
Free Up Resources
- Close unused chats
- Limit open projects to 1-2
- Close other heavy applications
- Check Activity Monitor for CPU/Memory usage
Large Projects
- Open specific subdirectories instead of entire repo
- Avoid opening folders with large dependencies (node_modules, etc.)
- Split project into smaller logical sections
- Close unnecessary projects to free memory
Optimize Settings
- Close old chat tabs
- Use simpler theme (Light or Dark default)
- Restart app periodically
Project Issues
Can’t open or index projects
Solutions:
Permission Issues
- Grant file access when prompted
- Check folder permissions
- Try different project location
Git Issues
- Ensure Git is installed
- Check
.gitfolder exists - Try non-Git folder to test
Path Problems
- Avoid special characters in path names
- Don’t use symlinks
- Keep path length reasonable
- Ensure path doesn’t contain spaces (or escape them properly)
Chat Problems
Messages not sending or displaying
Solutions:
Input Issues
- Press Enter to send (Shift+Enter for new line)
- Check for invisible characters
- Clear input and retype
Display Issues
- Refresh the interface (Cmd+R)
- Clear chat history
- Check zoom level (Cmd+0 to reset)
WebSocket Issues
- Check console for errors (View → Developer → Developer Tools)
- Restart Reliant
- Check network stability
Error Messages
Common Errors and Solutions
“API key is invalid”
- Double-check key in Settings
- Ensure no extra spaces
- Verify with provider’s website
- Generate new key if needed
“Rate limit exceeded”
- Wait before sending more messages
- Check API provider limits
- Consider upgrading plan
- Use different API key
“Model not available”
- Check API tier/access
- Verify model name in settings
- Try different model
- Contact API provider
“Project too large”
- Select specific subdirectories instead of root
- Avoid folders with large dependencies (node_modules, build, dist)
- Split into smaller logical sections
- Close other projects to free memory
“Cannot read file”
- Check file permissions
- Ensure file exists
- Close file in other applications
- Check file encoding (UTF-8 required)
Logs and Diagnostics
Finding Logs
Reliant logs are stored in:
~/Library/Logs/Reliant/
View logs:
# View current log
tail -f ~/Library/Logs/Reliant/main.log
# View all recent logs
ls -la ~/Library/Logs/Reliant/
# Search for errors in logs
grep -i error ~/Library/Logs/Reliant/main.log
Developer Tools
Access browser console:
- View → Developer → Developer Tools
- Or press
Cmd+Option+I - Check Console tab for errors
- Check Network tab for failed requests
System Information
Gather info for support:
# macOS version
sw_vers
# Reliant version
cat /Applications/Reliant.app/Contents/Info.plist | grep -A1 CFBundleShortVersionString
# System resources
top -l 1 | head -n 10
# Disk space
df -h
Getting Help
Before Asking for Help
Check Documentation
- Review relevant sections
- Search for your issue
- Check FAQ
Try Basic Fixes
- Restart Reliant
- Clear cache/preferences
- Update to latest version
- Restart your Mac
Gather Information
- Error messages (exact text)
- Steps to reproduce
- System info
- Reliant version
- Relevant logs
Getting Support
Support Email
Contact: support@reliantlabs.com
Include:
- Subject: Clear problem description
- Reliant version
- macOS version
- Detailed issue description
- Steps you’ve tried
- Attachments (screenshots, logs - remove sensitive data)
Response Time
- We aim to respond within 24-48 hours
- Priority given to critical issues
- Include as much detail as possible for faster resolution
Prevention Tips
Best Practices
Regular Maintenance
- Keep Reliant updated
- Update macOS regularly
- Clear cache periodically
- Restart app weekly
Project Management
- Keep projects organized
- Open specific subdirectories when possible
- Archive old projects
- Limit project size
Resource Management
- Monitor system resources
- Close unused features
- Limit concurrent operations
- Regular app restarts
Backup
- Save important chat content manually
- Keep copies of custom prompts
- Document custom agents
- Note your API provider settings
Quick Fixes Checklist
When something goes wrong, try these in order:
- ✓ Restart Reliant
- ✓ Check API key and connection
- ✓ Clear cache
- ✓ Check for updates
- ✓ Restart your Mac
- ✓ Reinstall Reliant
- ✓ Contact support
Still having issues? Don’t hesitate to reach out for help. We’re here to ensure Reliant works perfectly for your development workflow.