Supported Providers
Packmind supports the following LLM providers:Configuration via Web Interface
The recommended way to configure your LLM provider is through the Packmind web interface:- Log in to Packmind as an administrator
- Navigate to Settings > AI > Provider
- Select your preferred provider from the dropdown
- Fill in the required configuration fields
- Save the configuration
Model Selection Guidelines
Packmind uses two model types:- Primary Model: Used for complex operations like generating detailed standards and commands. Choose a more capable model here.
- Fast Model: Used for simpler operations where speed matters more than capability. Choose an economical model here.
Security Considerations
- API keys are encrypted at rest in the database
- Keys are never exposed in API responses after being saved
- Use environment-specific API keys for different deployments
- Rotate your API keys periodically
- Monitor your API usage to detect any unauthorized access
Troubleshooting
Connection Test Fails
- Verify your API key is correct and has not expired
- Check that your network allows outbound connections to the provider’s API
- For Azure OpenAI, ensure the deployment name matches exactly
- For local providers (Ollama, LM Studio), verify the server is running
Model Not Found
- Verify the model name is spelled correctly
- For Azure OpenAI, use the deployment name, not the model name
- For Ollama, ensure the model is pulled:
ollama pull <model-name> - Check that your API key has access to the specified model
Rate Limiting
If you encounter rate limiting errors:- Consider using a lower-tier model for the Fast Model
- Upgrade your API plan with the provider
- Implement request queuing in high-traffic scenarios