No project description provided
Project description
Vijil Dome
Vijil Dome is a fast, lightweight, and highly configurable library for adding runtime guardrails to your AI agents. It combines top open-source LLM safety tools with proprietary Vijil models to detect and respond to unsafe content — with built-in support for observability, tracing, and popular agent frameworks.
🚀 Installation
Install the core library:
pip install vijil-dome
Optional extras for common integrations:
opentelemetry– OTel-compatible tracing/logginggoogle– GCP-native metrics and logginglangchain– Seamless integration with LangChain/LangGraphembeddings– Fast similarity search usingannoy
⚠️ Note:
annoyis not currently compatible with agents built using Google ADK + Cloud Run. Use in-memory embeddings in those cases.
🔒 Guarding Agents in One Line
from vijil_dome import Dome
dome = Dome()
query = "How can I rob a bank?"
input_scan = dome.guard_input(query)
print(input_scan.is_safe(), input_scan.guarded_response())
# Get a response from your agent
response = "Here's how to rob a bank!"
output_scan = dome.guard_output(response)
print(output_scan.is_safe(), output_scan.guarded_response())
By default, Dome:
- Scans inputs for prompt injections, jailbreaks, and toxicity
- Scans outputs for toxicity and masks PII
⚙️ Configuration Options
You can configure Dome using a TOML file or a Python dictionary.
Example TOML
[guardrail]
input-guards = ["prompt-injection", "input-toxicity"]
output-guards = ["output-toxicity"]
input-early-exit = false
[prompt-injection]
type = "security"
early-exit = false
methods = ["prompt-injection-deberta-v3-base", "security-llm"]
[prompt-injection.security-llm]
model_name = "gpt-4o"
[input-toxicity]
type = "moderation"
methods = ["moderations-oai-api"]
[output-toxicity]
type = "moderation"
methods = ["moderation-prompt-engineering"]
Same Configuration in Python
config = {
"input-guards": ["prompt-injection", "input-toxicity"],
"output-guards": ["output-toxicity"],
"input-early-exit": False,
"prompt-injection": {
"type": "security",
"early-exit": False,
"methods": ["prompt-injection-deberta-v3-base", "security-llm"],
"security-llm": {
"model_name": "gpt-4o"
}
},
"input-toxicity": {
"type": "moderation",
"methods": ["moderations-oai-api"]
},
"output-toxicity": {
"type": "moderation",
"methods": ["moderation-prompt-engineering"]
},
}
Dome includes nearly 20 prebuilt guardrails and supports building your own!
👉 For the full list of guardrail methods, advanced config options, and extensibility, check out the Docs.
🔌 Compatibility
Dome works with any agent framework or LLM — it operates directly on strings, so there's no dependency on your stack!
For popular frameworks, we provide dedicated wrappers and tutorials to make integration seamless:
Observability Integrations:
Dome is compatible with the following observability framworks out of the box
- OpenTelemetry
- Weave (Weights & Biases)
- AgentOps
- Google Cloud Trace
See the documentation for more details
📚 Learn More
Get detailed guides, examples, and custom guardrail walkthroughs in the official documentation →
Have more questions, or want us to include another guardrailing technique? Reach out to us at contact@vijil.ai!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vijil_dome-1.0.11.tar.gz.
File metadata
- Download URL: vijil_dome-1.0.11.tar.gz
- Upload date:
- Size: 439.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3f6cda99a8939990bd1a01d653da61e3ee9de8730a5ce791f745d48d8677ff8
|
|
| MD5 |
ed13383b12bc41fb00a3972d4c59cae4
|
|
| BLAKE2b-256 |
b72db6c7377944465ceb2803ea4c5685a9a00af82fa2b125d93f24307e271507
|
File details
Details for the file vijil_dome-1.0.11-py3-none-any.whl.
File metadata
- Download URL: vijil_dome-1.0.11-py3-none-any.whl
- Upload date:
- Size: 490.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
187d13dac6759fc7e77c71a9dff4d33402a311a109894f5a0b19d75c7112d645
|
|
| MD5 |
ba2dd112d3367ab57047e75e813e7c99
|
|
| BLAKE2b-256 |
be6ff5818e91e8da16130422f1ccfec3dc07242b88e6b8ccbb3be2809f16fe25
|