├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feedback.md │ └── submit-a-request.md └── workflows │ └── ci.yml ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── docker-compose.build.yml ├── docker-compose.yml ├── helm ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── app-deployment.yaml │ ├── app-service.yaml │ ├── mysql-deployment.yaml │ ├── mysql-service.yaml │ ├── opensearch-configmap.yaml │ ├── opensearch-dashboard-configmap.yaml │ ├── opensearch-dashboards-config-configmap.yaml │ ├── opensearch-dashboards-deployment.yaml │ ├── opensearch-dashboards-service.yaml │ ├── opensearch-log4j2-configmap.yaml │ ├── opensearch-node1-deployment.yaml │ ├── opensearch-node1-service.yaml │ ├── opensearch-security-configmap.yaml │ ├── opensearch-seeder-configmap.yaml │ ├── opensearch-seeder-job.yaml │ ├── shields-deployment.yaml │ ├── shields-service.yaml │ ├── streamlit-app-deployment.yaml │ ├── streamlit-app-service.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── media ├── dashboard-laptop.png ├── ecosystem-diagram.png ├── vibranium-dashboard.png └── vibranium_title.png ├── vibraniumdome-app ├── .dockerignore ├── .env.example ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── Dockerfile ├── README.md ├── components.json ├── docker-compose.yml ├── docker-deploy.sh ├── docker-entrypoint.sh ├── next.config.mjs ├── package.json ├── postcss.config.cjs ├── prettier.config.mjs ├── prisma │ ├── schema.prisma │ └── seed.ts ├── public │ ├── dark-logo.svg │ ├── favicon.ico │ └── light-stacked.svg ├── src │ ├── app │ │ ├── api │ │ │ ├── auth │ │ │ │ └── [...nextauth] │ │ │ │ │ └── route.ts │ │ │ └── trpc │ │ │ │ └── [trpc] │ │ │ │ └── route.ts │ │ ├── components │ │ │ ├── auth-button.tsx │ │ │ ├── constants │ │ │ │ └── side-nav.tsx │ │ │ ├── create-policy.tsx │ │ │ ├── dropdown-menu-item-logout.tsx │ │ │ ├── icons.tsx │ │ │ ├── layout │ │ │ │ ├── header.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── mobile-sidebar.tsx │ │ │ │ ├── side-nav.tsx │ │ │ │ ├── sidebar.tsx │ │ │ │ ├── subnav-accordion.tsx │ │ │ │ ├── theme-toggle.tsx │ │ │ │ └── user-nav.tsx │ │ │ ├── policy │ │ │ │ ├── create-shield.tsx │ │ │ │ ├── create-update-policy-button.tsx │ │ │ │ ├── create-update-shield-button.tsx │ │ │ │ ├── data-table.tsx │ │ │ │ ├── high-risk-threshold.tsx │ │ │ │ ├── llm-app-input.tsx │ │ │ │ ├── low-risk-threshold.tsx │ │ │ │ ├── policy-input.tsx │ │ │ │ ├── redact-conversation.tsx │ │ │ │ ├── shield-metadata.tsx │ │ │ │ ├── shields-combo.tsx │ │ │ │ ├── shields-data-table.tsx │ │ │ │ └── shields-filter.tsx │ │ │ ├── ui │ │ │ │ ├── avatar.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── sheet.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── table.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ └── textarea.tsx │ │ │ └── user-auth-form.tsx │ │ ├── dashboard │ │ │ ├── components │ │ │ │ ├── date-range-picker.tsx │ │ │ │ ├── main-nav.tsx │ │ │ │ ├── overview.tsx │ │ │ │ ├── recent-scans.tsx │ │ │ │ ├── search.tsx │ │ │ │ ├── team-switcher.tsx │ │ │ │ └── user-nav.tsx │ │ │ └── page.tsx │ │ ├── governance │ │ │ └── page.tsx │ │ ├── hooks │ │ │ └── useSidebar.tsx │ │ ├── layout.tsx │ │ ├── lib │ │ │ ├── fonts.ts │ │ │ └── utils.ts │ │ ├── page.tsx │ │ ├── policies │ │ │ └── page.tsx │ │ ├── policy │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ ├── providers.js │ │ ├── shield │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ ├── state │ │ │ └── index.ts │ │ ├── types │ │ │ └── index.tsx │ │ └── users │ │ │ └── page.tsx │ ├── env.mjs │ ├── server │ │ ├── api │ │ │ ├── root.ts │ │ │ ├── routers │ │ │ │ ├── apitoken.ts │ │ │ │ ├── membership.ts │ │ │ │ └── policy.ts │ │ │ └── trpc.ts │ │ ├── auth.ts │ │ └── db.ts │ ├── styles │ │ └── globals.css │ └── trpc │ │ ├── react.tsx │ │ ├── server.ts │ │ └── shared.ts ├── tailwind.config.js ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock ├── vibraniumdome-opensearch ├── .gitignore ├── README.md ├── client_example.py ├── config.yml ├── dashboard.ndjson ├── docker-compose.yml ├── log4j2.properties ├── opensearch-seed.sh ├── opensearch.yml ├── opensearch_dashboards.yml ├── poetry.lock └── pyproject.toml └── vibraniumdome-shields ├── .dockerignore ├── .env.example ├── .flake8 ├── .gitignore ├── Dockerfile ├── README.md ├── docker-deploy.sh ├── docker-entrypoint.sh ├── examples ├── .env.example ├── .streamlit │ └── config.toml ├── Dockerfile ├── README.md ├── docker-deploy.sh ├── poetry.lock ├── pyproject.toml ├── quickstart.py ├── streamlit_app.py ├── vibraniumdome_langchain_example.py ├── vibraniumdome_playground_example.py ├── vibraniumdome_playground_mock.py ├── vibraniumdome_sdk_client_example.py └── vibraniumdome_sdk_stress.py ├── otel_client.py ├── otel_client_builder.py ├── poetry.lock ├── pyproject.toml ├── tests ├── __init__.py ├── model │ ├── __init__.py │ ├── test_vibranium_model.py │ └── test_vibranium_utils.py ├── shields │ ├── __init__.py │ ├── test_vibranium_arbitraty_images_shield.py │ ├── test_vibranium_canary_shield.py │ ├── test_vibranium_captain_shield.py │ ├── test_vibranium_dos_shield.py │ ├── test_vibranium_invisible_chars_shield.py │ ├── test_vibranium_no_ip_urls_shield.py │ ├── test_vibranium_refusal_shield.py │ ├── test_vibranium_regex_shield.py │ ├── test_vibranium_safety_shield.py │ ├── test_vibranium_sensitive_shield.py │ ├── test_vibranium_transformer_shield.py │ └── test_vibranium_whitelist_urls_shield.py ├── shields_it │ ├── __init__.py │ └── test_vibranium_shields_interaction.py └── vector_db │ ├── __init__.py │ └── test_vectordb.py └── vibraniumdome_shields ├── __init__.py ├── llm_interaction ├── __init__.py └── llm_interaction_service.py ├── main.py ├── open_telemetry └── open_telemetry_parser.py ├── policies └── policy_service.py ├── prompt-injections.yaml ├── settings ├── prompts.toml └── settings.toml ├── settings_loader.py ├── shields ├── __init__.py ├── input │ ├── __init__.py │ ├── captains_shield.py │ ├── invisible_chars_shield.py │ ├── model_denial_of_service_shield.py │ ├── no_ip_in_urls_shield.py │ ├── prompt_injection_transformer_shield.py │ ├── prompt_safety_shield.py │ ├── regex_shield.py │ ├── semantic_similarity_shield.py │ └── sensitive_information_disclosoure_shield.py ├── invisible_chars_shield_base.py ├── model.py ├── output │ ├── __init__.py │ ├── arbitrary_images_shield.py │ ├── canary_token_disclosoure_shield.py │ ├── invisible_chars_shield.py │ ├── refusal_shield.py │ ├── regex_shield.py │ ├── sensitive_information_disclosoure_shield.py │ └── whitelist_urls_shield.py ├── regex_shield_base.py ├── sensitive_information_disclosoure_base.py └── vibranium_shields_service.py ├── user_interface └── cli_app.py ├── utils.py ├── vector_db ├── __init__.py └── vector_db_service.py └── vibranium-sensetive.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/.github/ISSUE_TEMPLATE/feedback.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/submit-a-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/.github/ISSUE_TEMPLATE/submit-a-request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docker-compose.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/docker-compose.build.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/Chart.yaml -------------------------------------------------------------------------------- /helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/README.md -------------------------------------------------------------------------------- /helm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/templates/app-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/app-deployment.yaml -------------------------------------------------------------------------------- /helm/templates/app-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/app-service.yaml -------------------------------------------------------------------------------- /helm/templates/mysql-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/mysql-deployment.yaml -------------------------------------------------------------------------------- /helm/templates/mysql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/mysql-service.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-dashboard-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-dashboard-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-dashboards-config-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-dashboards-config-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-dashboards-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-dashboards-deployment.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-dashboards-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-dashboards-service.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-log4j2-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-log4j2-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-node1-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-node1-deployment.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-node1-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-node1-service.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-security-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-security-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-seeder-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-seeder-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-seeder-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/opensearch-seeder-job.yaml -------------------------------------------------------------------------------- /helm/templates/shields-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/shields-deployment.yaml -------------------------------------------------------------------------------- /helm/templates/shields-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/shields-service.yaml -------------------------------------------------------------------------------- /helm/templates/streamlit-app-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/streamlit-app-deployment.yaml -------------------------------------------------------------------------------- /helm/templates/streamlit-app-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/streamlit-app-service.yaml -------------------------------------------------------------------------------- /helm/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /media/dashboard-laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/media/dashboard-laptop.png -------------------------------------------------------------------------------- /media/ecosystem-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/media/ecosystem-diagram.png -------------------------------------------------------------------------------- /media/vibranium-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/media/vibranium-dashboard.png -------------------------------------------------------------------------------- /media/vibranium_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/media/vibranium_title.png -------------------------------------------------------------------------------- /vibraniumdome-app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/.dockerignore -------------------------------------------------------------------------------- /vibraniumdome-app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/.env.example -------------------------------------------------------------------------------- /vibraniumdome-app/.eslintignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /vibraniumdome-app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/.eslintrc.cjs -------------------------------------------------------------------------------- /vibraniumdome-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/.gitignore -------------------------------------------------------------------------------- /vibraniumdome-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/Dockerfile -------------------------------------------------------------------------------- /vibraniumdome-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/README.md -------------------------------------------------------------------------------- /vibraniumdome-app/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/components.json -------------------------------------------------------------------------------- /vibraniumdome-app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/docker-compose.yml -------------------------------------------------------------------------------- /vibraniumdome-app/docker-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/docker-deploy.sh -------------------------------------------------------------------------------- /vibraniumdome-app/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/docker-entrypoint.sh -------------------------------------------------------------------------------- /vibraniumdome-app/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/next.config.mjs -------------------------------------------------------------------------------- /vibraniumdome-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/package.json -------------------------------------------------------------------------------- /vibraniumdome-app/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/postcss.config.cjs -------------------------------------------------------------------------------- /vibraniumdome-app/prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/prettier.config.mjs -------------------------------------------------------------------------------- /vibraniumdome-app/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/prisma/schema.prisma -------------------------------------------------------------------------------- /vibraniumdome-app/prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/prisma/seed.ts -------------------------------------------------------------------------------- /vibraniumdome-app/public/dark-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/public/dark-logo.svg -------------------------------------------------------------------------------- /vibraniumdome-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/public/favicon.ico -------------------------------------------------------------------------------- /vibraniumdome-app/public/light-stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/public/light-stacked.svg -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/api/trpc/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/api/trpc/[trpc]/route.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/auth-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/auth-button.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/constants/side-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/constants/side-nav.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/create-policy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/create-policy.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/dropdown-menu-item-logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/dropdown-menu-item-logout.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/icons.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/layout/header.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/layout/index.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/layout/mobile-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/layout/mobile-sidebar.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/layout/side-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/layout/side-nav.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/layout/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/layout/sidebar.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/layout/subnav-accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/layout/subnav-accordion.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/layout/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/layout/theme-toggle.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/layout/user-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/layout/user-nav.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/create-shield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/create-shield.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/create-update-policy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/create-update-policy-button.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/create-update-shield-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/create-update-shield-button.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/data-table.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/high-risk-threshold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/high-risk-threshold.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/llm-app-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/llm-app-input.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/low-risk-threshold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/low-risk-threshold.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/policy-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/policy-input.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/redact-conversation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/redact-conversation.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/shield-metadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/shield-metadata.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/shields-combo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/shields-combo.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/shields-data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/shields-data-table.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/policy/shields-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/policy/shields-filter.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/avatar.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/badge.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/button.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/calendar.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/card.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/command.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/dialog.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/input.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/label.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/popover.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/select.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/separator.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/sheet.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/slider.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/table.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/tabs.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/ui/textarea.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/components/user-auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/components/user-auth-form.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/dashboard/components/date-range-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/dashboard/components/date-range-picker.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/dashboard/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/dashboard/components/main-nav.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/dashboard/components/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/dashboard/components/overview.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/dashboard/components/recent-scans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/dashboard/components/recent-scans.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/dashboard/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/dashboard/components/search.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/dashboard/components/team-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/dashboard/components/team-switcher.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/dashboard/components/user-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/dashboard/components/user-nav.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/governance/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/governance/page.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/hooks/useSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/hooks/useSidebar.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/layout.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/lib/fonts.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/lib/utils.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/page.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/policies/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/policies/page.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/policy/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/policy/[id]/page.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/providers.js -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/shield/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/shield/[id]/page.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/state/index.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/types/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/types/index.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/app/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/app/users/page.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/env.mjs -------------------------------------------------------------------------------- /vibraniumdome-app/src/server/api/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/server/api/root.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/server/api/routers/apitoken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/server/api/routers/apitoken.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/server/api/routers/membership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/server/api/routers/membership.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/server/api/routers/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/server/api/routers/policy.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/server/api/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/server/api/trpc.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/server/auth.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/server/db.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/styles/globals.css -------------------------------------------------------------------------------- /vibraniumdome-app/src/trpc/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/trpc/react.tsx -------------------------------------------------------------------------------- /vibraniumdome-app/src/trpc/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/trpc/server.ts -------------------------------------------------------------------------------- /vibraniumdome-app/src/trpc/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/src/trpc/shared.ts -------------------------------------------------------------------------------- /vibraniumdome-app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/tailwind.config.js -------------------------------------------------------------------------------- /vibraniumdome-app/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/tailwind.config.ts -------------------------------------------------------------------------------- /vibraniumdome-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/tsconfig.json -------------------------------------------------------------------------------- /vibraniumdome-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-app/yarn.lock -------------------------------------------------------------------------------- /vibraniumdome-opensearch/.gitignore: -------------------------------------------------------------------------------- 1 | vibraniumdome-opensearch-data* 2 | -------------------------------------------------------------------------------- /vibraniumdome-opensearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/README.md -------------------------------------------------------------------------------- /vibraniumdome-opensearch/client_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/client_example.py -------------------------------------------------------------------------------- /vibraniumdome-opensearch/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/config.yml -------------------------------------------------------------------------------- /vibraniumdome-opensearch/dashboard.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/dashboard.ndjson -------------------------------------------------------------------------------- /vibraniumdome-opensearch/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/docker-compose.yml -------------------------------------------------------------------------------- /vibraniumdome-opensearch/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/log4j2.properties -------------------------------------------------------------------------------- /vibraniumdome-opensearch/opensearch-seed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/opensearch-seed.sh -------------------------------------------------------------------------------- /vibraniumdome-opensearch/opensearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/opensearch.yml -------------------------------------------------------------------------------- /vibraniumdome-opensearch/opensearch_dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/opensearch_dashboards.yml -------------------------------------------------------------------------------- /vibraniumdome-opensearch/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/poetry.lock -------------------------------------------------------------------------------- /vibraniumdome-opensearch/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-opensearch/pyproject.toml -------------------------------------------------------------------------------- /vibraniumdome-shields/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/.dockerignore -------------------------------------------------------------------------------- /vibraniumdome-shields/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/.env.example -------------------------------------------------------------------------------- /vibraniumdome-shields/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/.flake8 -------------------------------------------------------------------------------- /vibraniumdome-shields/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/.gitignore -------------------------------------------------------------------------------- /vibraniumdome-shields/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/Dockerfile -------------------------------------------------------------------------------- /vibraniumdome-shields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/README.md -------------------------------------------------------------------------------- /vibraniumdome-shields/docker-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/docker-deploy.sh -------------------------------------------------------------------------------- /vibraniumdome-shields/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/docker-entrypoint.sh -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/.env.example -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/.streamlit/config.toml -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/Dockerfile -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/README.md -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/docker-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/docker-deploy.sh -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/poetry.lock -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/pyproject.toml -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/quickstart.py -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/streamlit_app.py -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/vibraniumdome_langchain_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/vibraniumdome_langchain_example.py -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/vibraniumdome_playground_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/vibraniumdome_playground_example.py -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/vibraniumdome_playground_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/vibraniumdome_playground_mock.py -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/vibraniumdome_sdk_client_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/vibraniumdome_sdk_client_example.py -------------------------------------------------------------------------------- /vibraniumdome-shields/examples/vibraniumdome_sdk_stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/examples/vibraniumdome_sdk_stress.py -------------------------------------------------------------------------------- /vibraniumdome-shields/otel_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/otel_client.py -------------------------------------------------------------------------------- /vibraniumdome-shields/otel_client_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/otel_client_builder.py -------------------------------------------------------------------------------- /vibraniumdome-shields/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/poetry.lock -------------------------------------------------------------------------------- /vibraniumdome-shields/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/pyproject.toml -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/model/test_vibranium_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/model/test_vibranium_model.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/model/test_vibranium_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/model/test_vibranium_utils.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_arbitraty_images_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_arbitraty_images_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_canary_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_canary_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_captain_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_captain_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_dos_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_dos_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_invisible_chars_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_invisible_chars_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_no_ip_urls_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_no_ip_urls_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_refusal_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_refusal_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_regex_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_regex_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_safety_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_safety_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_sensitive_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_sensitive_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_transformer_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_transformer_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields/test_vibranium_whitelist_urls_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields/test_vibranium_whitelist_urls_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields_it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/shields_it/test_vibranium_shields_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/shields_it/test_vibranium_shields_interaction.py -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/vector_db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/tests/vector_db/test_vectordb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/tests/vector_db/test_vectordb.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/llm_interaction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/llm_interaction/llm_interaction_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/llm_interaction/llm_interaction_service.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/main.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/open_telemetry/open_telemetry_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/open_telemetry/open_telemetry_parser.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/policies/policy_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/policies/policy_service.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/prompt-injections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/prompt-injections.yaml -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/settings/prompts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/settings/prompts.toml -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/settings/settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/settings/settings.toml -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/settings_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/settings_loader.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/captains_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/input/captains_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/invisible_chars_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/input/invisible_chars_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/model_denial_of_service_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/input/model_denial_of_service_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/no_ip_in_urls_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/input/no_ip_in_urls_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/prompt_injection_transformer_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/input/prompt_injection_transformer_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/prompt_safety_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/input/prompt_safety_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/regex_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/input/regex_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/semantic_similarity_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/input/semantic_similarity_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/input/sensitive_information_disclosoure_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/input/sensitive_information_disclosoure_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/invisible_chars_shield_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/invisible_chars_shield_base.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/model.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/output/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/output/arbitrary_images_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/output/arbitrary_images_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/output/canary_token_disclosoure_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/output/canary_token_disclosoure_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/output/invisible_chars_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/output/invisible_chars_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/output/refusal_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/output/refusal_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/output/regex_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/output/regex_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/output/sensitive_information_disclosoure_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/output/sensitive_information_disclosoure_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/output/whitelist_urls_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/output/whitelist_urls_shield.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/regex_shield_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/regex_shield_base.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/sensitive_information_disclosoure_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/sensitive_information_disclosoure_base.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/shields/vibranium_shields_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/shields/vibranium_shields_service.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/user_interface/cli_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/user_interface/cli_app.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/utils.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/vector_db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/vector_db/vector_db_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/vector_db/vector_db_service.py -------------------------------------------------------------------------------- /vibraniumdome-shields/vibraniumdome_shields/vibranium-sensetive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genia-dev/vibraniumdome/HEAD/vibraniumdome-shields/vibraniumdome_shields/vibranium-sensetive.yaml --------------------------------------------------------------------------------