If you are evaluating Nora or have just started self-hosting it, the questions below cover the topics that come up most often. If your question is not answered here, check the troubleshooting guide or open a GitHub Discussion.Documentation Index
Fetch the complete documentation index at: https://noradocs.solomontsao.com/llms.txt
Use this file to discover all available pages before exploring further.
Is Nora free to use?
Is Nora free to use?
Yes. Nora is licensed under the Apache 2.0 license, which means you can self-host it, modify it, use it commercially inside your company, host it for clients, and build services or integrations on top of it — all at no cost and without a commercial agreement.The center of the product is the fully open-source repository and self-hosted control-plane workflow. There is no proprietary core or usage-gated tier hidden behind the open-source version.
Can I use Nora in production?
Can I use Nora in production?
Yes. Nora is designed for serious operator use. Individual builders, internal AI platform teams, and larger enterprise environments can all run it. It is built to stay credible from single-host evaluation through Proxmox, private cloud, and AWS/Azure/GCP rollout footprints.If you need rollout help, deployment review, or paid support for a production environment, the GitHub Discussions path and the deployment and support options page are the right starting points.
What LLM providers are supported?
What LLM providers are supported?
Nora supports the following LLM providers. You can save API keys for any of them in Settings and sync them to your running agents.
- Anthropic
- OpenAI
- Google AI
- Groq
- Mistral AI
- DeepSeek
- OpenRouter
- Together AI
- Cohere
- xAI
- Moonshot AI
- Z.AI
- Ollama
- MiniMax
- GitHub Copilot
- Hugging Face
- Cerebras
- NVIDIA
Is my API key data safe?
Is my API key data safe?
Yes. All API keys you save in Nora are encrypted at rest using AES-256-GCM before being stored in the database. Raw key values are never returned in any API response — only masked versions (showing the first and last four characters) are surfaced in the UI.Keys are decrypted only at the moment they need to be injected into a running agent runtime, and that operation happens server-side. The
ENCRYPTION_KEY environment variable you set during setup controls this encryption. Keep it secret and back it up securely.Can I run multiple agents at the same time?
Can I run multiple agents at the same time?
Yes. Self-hosted Nora supports running multiple agents concurrently. The default limit is 50 agents, controlled by the Restart the stack after changing the value.
MAX_AGENTS environment variable. You can raise or lower this limit by setting the variable in your .env file:What is NemoClaw?
What is NemoClaw?
NemoClaw is a Docker-hosted sandbox backend with OpenShell policy controls, powered by NVIDIA Nemotron models. It provides a secure, isolated execution environment for agent runtimes that require tighter operational controls.NemoClaw is disabled by default. To enable it, set
NEMOCLAW_ENABLED=true and provide a valid NVIDIA_API_KEY in your .env file. See the troubleshooting guide if NemoClaw fails to start after enabling it.What is OpenClaw?
What is OpenClaw?
OpenClaw is the primary supported agent runtime in Nora today and the fastest path to a working deployment. It is an open-source project maintained separately at github.com/openclaw/openclaw.When you deploy an agent in Nora, the default runtime path uses OpenClaw. Nora’s architecture is designed to support additional runtimes over time, so OpenClaw is the best-supported option today but not the only one the platform will support.
Can I run Nora on Kubernetes?
Can I run Nora on Kubernetes?
Yes. Nora supports Kubernetes as a provisioner backend. Set the following variable in your For local Kubernetes verification using This allows the Compose-hosted control plane to reach the runtime and gateway through Docker-mapped host ports during local testing.
.env file to switch from the default Docker backend to Kubernetes:kind, also set:How do I get support?
How do I get support?
There are several paths depending on what you need:
- Bug reports and documentation errors — open an issue at github.com/solomon2773/nora/issues
- Setup guidance, onboarding help, and rollout questions — start a discussion at github.com/solomon2773/nora/discussions
- Paid support, managed PaaS, or enterprise deployments — see the options at nora.solomontsao.com/pricing
Can I contribute to Nora?
Can I contribute to Nora?
Yes. Nora is in active development and welcomes contributions. Good areas to contribute include frontend operator workflows, backend provisioning and lifecycle management, testing and CI hardening, integrations and channel support, and self-hosted deployment ergonomics.To contribute:
- Fork the repository at github.com/solomon2773/nora
- Create a feature branch
- Commit your changes
- Open a pull request