Nexent FAQ
This FAQ addresses common questions and issues you might encounter while installing and deploying Nexent. For the basic installation steps, please refer to the Quick Start Guide in our documentation.
🚀 Installation & Setup
For model provider setup and API key acquisition, see our detailed Model Providers Guide.
🚫 Common Errors & Operations
🌐 Network Connection Issues
- Q: How can a Docker container access models deployed on the host machine (e.g., Ollama)?
A: Since
localhost
inside the container refers to the container itself, use one of these methods to connect to host services:Option 1: Use Docker's special DNS name
host.docker.internal
Supported environments: Mac/Windows and newer Docker Desktop versions (Linux version also supported)bashhttp://host.docker.internal:11434/v1
Option 2: Use host machine's actual IP (ensure firewall allows access)
bashhttp://[HOST_IP]:11434/v1
Option 3: Modify Docker Compose configuration
Add to your docker-compose.yaml file:yamlextra_hosts: - "host.docker.internal:host-gateway"
🔌 Port Conflicts
- Q: Port 3000 is already in use. How can I change it?
- A: You can modify the port in the Docker Compose configuration file.
📦 Container Issues
- Q: How do I check container logs?
- A: Use
docker logs <container_name>
to view logs for specific containers.
- A: Use
🔍 Troubleshooting
🔢 Model Connection Issues
- Q: Why can't my model connect?
A: Check the following:
- Correct API endpoint: Ensure you're using the right base URL
- Valid API key: Verify your API key has proper permissions
- Model name: Confirm the model identifier is correct
- Network access: Ensure your deployment can reach the provider's servers
For specific provider setup, see our Model Providers Guide.
📧 Email Tools Configuration
- Q: How can I enable and configure email tools?
- A: Our team has pre-implemented email tools based on IMAP and SMTP. To enable them:
- Configure email parameters in
.env
file - Uncomment the email tool imports and registrations in
agent_utils.py
- Switch to the email-enabled system prompt by using
code_agent_with_email.yaml
- Restart the MCP service to apply changes
- Configure email parameters in
- A: Our team has pre-implemented email tools based on IMAP and SMTP. To enable them:
💡 Need Help
If your question isn't answered here:
- Join our Discord community for real-time support
- Check our GitHub Issues for similar problems
- Refer to our Contribution Guide for more detailed information