On-Premises Deployment
Lynx AI Agent supports on-premises deployments for organizations that require data to remain within their own infrastructure - whether in a private cloud or a fully air-gapped network.
Both deployment types share the same backend setup. The only difference is the AI engine:
- Private Cloud - AI inference runs via a managed cloud provider, fully within your cloud tenant.
- Air-gapped - AI inference runs on a self-hosted open-weight model with no internet connectivity whatsoever.
AI Engine
The Lynx AI backend requires an OpenAI-compatible completions endpoint. How you source it depends on your deployment type.
Private Cloud
For private cloud deployments, use your cloud provider's managed AI service as the inference endpoint. Popular choices include:
- Amazon Bedrock
- Google Vertex AI
- Microsoft Foundry
All of these expose an OpenAI-compatible API and support Bearer key authentication.
Air Gapped
Warning
A local inference engine is a pre-requisite for an air-gapped environment.
In an air-gapped deployment, Lynx AI Agent relies on the power of local LLMs for Splunk reasoning, tool execution, and guardrail protections (including malicious payload and prompt-injection checks).
We continuously evaluate new checkpoints, publish benchmarks, and update the supported model list as the industry evolves. Learn more about our supported models here.
The inference endpoint must expose an OpenAI-compatible Completions API, be reachable from the backend over either HTTP or HTTPS, and may accept an optional Bearer key.
You can test the connection to the inference endpoint like this:
curl -H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{"model":"glm-5.1","messages":[{"role":"user","content":"What is the meaning of life?"}]}' \
https://example.com/api/v1/chat/completions # (1)!
- Set the base URL to the inference endpoint in your organization.
Lynx AI Backend
The backend ships as a hardened container image, deployable with Docker, Docker Compose, Kubernetes, or OpenShift.
Minimum allocation: 1 CPU core, 1 GB RAM, and a stable network path to the model endpoint.
-
Create the following
.envfile:# .env # App ONPREM_MODE=true # (1)! TRUSTED_HOSTS=<host1>[,<host2>] # (2)! LATEST_VERSION=<version> # (3)! PORT=<port> # (4)! SSL_ENABLED=<boolean> # (5)! IPV6=<boolean> # (6)! # Inference INFERENCE_URL=<url> # (7)! INFERENCE_API_KEY=<api_key> INFERENCE_URL2=<url> # (8)! INFERENCE_API_KEY2=<api_key> GUARDRAIL=<boolean> # (9)! COMPACT_MAX_TOKENS=<number> # (10)! AUXILIARY_MODEL=<model> # (11)! REPLAY_REASONING=<boolean> # (12)! VERIFY_SSL=<boolean> # (13)!- This is required to be set to
truewhen deployed in an air-gapped environment. - Hostnames that the backend can accept requests on.
- Informs the backend what's the expected version of the Splunk app. The app checks its version against this value on load - if they don't match, it'll show a notification.
- Port the server listens on. Default:
3000 - Whether to listen for HTTPS requests.
falsemeans HTTP.truerequires SSL certificates to be mounted into the container. Default:false - Bind to
::(IPv6) instead of0.0.0.0(IPv4). Default:false - Base URL to the primary inference endpoint. You can also use
INFERENCE_URL1. - Optional secondary inference endpoint. You can configure multiple endpoints by incrementing the number (e.g.,
INFERENCE_URL3,INFERENCE_URL4). - Enable request filtering via a lightweight LLM guardrail. Default:
true - Maximum number of tokens to be generated by the compaction process. Default:
2000 - AI model used for guardrail protections and auxiliary tasks like chat title generation. Must be set to the
namevalue of one of the on-prem AI models in ai.conf. Default:google/gemini-2.5-flash-lite - Convert replayed
reasoning_contenttoreasoning_detailsinstead of stripping it. Usually not required for on-premises deployments. Default:false - Whether to verify the SSL certificate of the inference endpoint. Default:
true
- This is required to be set to
-
Run the container image with the
.envfile:If
SSL_ENABLED=true, mount a certificate chain and private key into the container at/ssl/cert.pemand/ssl/privkey.pem:
Tip
Ensure the certificate files are readable by the container process (e.g., chmod 644).
Splunk App
When deploying the Splunk app, in addition to setting up the details of your backend server, you must also set onprem_mode = true and specify your available on-prem AI models in local/ai.conf.
See ai.conf for more details.
From this point on, setting up the Splunk app is the same as for an internet-connected deployment.
Follow the instructions in Installation and Configuration to complete the setup.