├── .dockerignore ├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── free-disk-space │ └── action.yaml └── workflows │ ├── cache-preview.yaml │ ├── codeql.yml │ ├── core-preview.yaml │ ├── discord-notifications.yaml │ ├── release.yaml │ └── rule-server-preview.yaml ├── .gitignore ├── ADOPTERS.md ├── CNAME ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTOR_LICENSE_AGREEMENT.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── cmd ├── cli.go ├── cli_test.go ├── config.go └── mock_data.go ├── config_example.yaml ├── demo ├── .env.example ├── .gitignore ├── cache_config_example.yaml ├── demo_config.yaml └── docker-compose.yml ├── docker └── docker-entrypoint.sh ├── docs ├── assets │ ├── input.svg │ └── output.svg ├── docs.go ├── swagger.json └── swagger.yaml ├── go.mod ├── go.sum ├── lib ├── anthropic │ ├── handlers.go │ └── provider.go ├── audit_logs.go ├── authentication.go ├── cache.go ├── config.go ├── db.go ├── error.go ├── handlers.go ├── huggingface │ └── handlers.go ├── nvidia │ └── handlers.go ├── openai │ ├── handlers.go │ └── provider.go ├── provider │ └── common.go ├── rules │ ├── input.go │ ├── input_test.go │ └── output.go ├── settings.go ├── types │ └── message.go ├── usage.go └── utils.go ├── main.go ├── models ├── aimodels.go ├── api_keys.go ├── audit_logs.go ├── base.go ├── products.go ├── tags.go ├── usage.go └── workspace.go ├── renovate.json ├── server ├── server.go └── server_test.go ├── services ├── cache │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── config_example.yaml │ ├── main.py │ ├── poetry.lock │ └── pyproject.toml ├── rule │ ├── Dockerfile │ ├── README.md │ ├── poetry.lock │ ├── pyproject.toml │ └── src │ │ ├── main.py │ │ ├── plugins │ │ ├── __init__.py │ │ ├── azure_ai_content_safety_prompt_injection.py │ │ ├── content_safety.py │ │ ├── detect_code.py │ │ ├── detect_english.py │ │ ├── invisible_chars.py │ │ ├── langkit.py │ │ ├── llama_guard.py │ │ ├── nvidia_nim_jailbreak.py │ │ ├── openai_moderation.py │ │ ├── pii.py │ │ ├── ppl_jailbreak.py │ │ ├── prompt_guard.py │ │ ├── prompt_injection_llm.py │ │ ├── relevance.py │ │ └── vigilllm.py │ │ ├── tests │ │ ├── __init__.py │ │ └── test_api.py │ │ └── utils │ │ ├── __init__.py │ │ └── logger_config.py └── vigilllm │ ├── Dockerfile │ ├── entrypoint.sh │ ├── generate_config.sh │ └── packages.txt ├── test-client-php ├── composer.json ├── composer.lock └── index.php └── test-client ├── .gitignore ├── package.json ├── pnpm-lock.yaml ├── src └── index.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | ENV=testing 2 | OPENAI_API_KEY="" -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/free-disk-space/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.github/free-disk-space/action.yaml -------------------------------------------------------------------------------- /.github/workflows/cache-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.github/workflows/cache-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/core-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.github/workflows/core-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/discord-notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.github/workflows/discord-notifications.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/rule-server-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.github/workflows/rule-server-preview.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/.gitignore -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | oss.openshield.ai -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @pigri @krichard1212 @waroca 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTOR_LICENSE_AGREEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/CONTRIBUTOR_LICENSE_AGREEMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/cmd/cli.go -------------------------------------------------------------------------------- /cmd/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/cmd/cli_test.go -------------------------------------------------------------------------------- /cmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/cmd/config.go -------------------------------------------------------------------------------- /cmd/mock_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/cmd/mock_data.go -------------------------------------------------------------------------------- /config_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/config_example.yaml -------------------------------------------------------------------------------- /demo/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/demo/.env.example -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | volumes 2 | -------------------------------------------------------------------------------- /demo/cache_config_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/demo/cache_config_example.yaml -------------------------------------------------------------------------------- /demo/demo_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/demo/demo_config.yaml -------------------------------------------------------------------------------- /demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/demo/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /docs/assets/input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/docs/assets/input.svg -------------------------------------------------------------------------------- /docs/assets/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/docs/assets/output.svg -------------------------------------------------------------------------------- /docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/docs/docs.go -------------------------------------------------------------------------------- /docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/docs/swagger.json -------------------------------------------------------------------------------- /docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/docs/swagger.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/go.sum -------------------------------------------------------------------------------- /lib/anthropic/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/anthropic/handlers.go -------------------------------------------------------------------------------- /lib/anthropic/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/anthropic/provider.go -------------------------------------------------------------------------------- /lib/audit_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/audit_logs.go -------------------------------------------------------------------------------- /lib/authentication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/authentication.go -------------------------------------------------------------------------------- /lib/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/cache.go -------------------------------------------------------------------------------- /lib/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/config.go -------------------------------------------------------------------------------- /lib/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/db.go -------------------------------------------------------------------------------- /lib/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/error.go -------------------------------------------------------------------------------- /lib/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/handlers.go -------------------------------------------------------------------------------- /lib/huggingface/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/huggingface/handlers.go -------------------------------------------------------------------------------- /lib/nvidia/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/nvidia/handlers.go -------------------------------------------------------------------------------- /lib/openai/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/openai/handlers.go -------------------------------------------------------------------------------- /lib/openai/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/openai/provider.go -------------------------------------------------------------------------------- /lib/provider/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/provider/common.go -------------------------------------------------------------------------------- /lib/rules/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/rules/input.go -------------------------------------------------------------------------------- /lib/rules/input_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/rules/input_test.go -------------------------------------------------------------------------------- /lib/rules/output.go: -------------------------------------------------------------------------------- 1 | package rules 2 | -------------------------------------------------------------------------------- /lib/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/settings.go -------------------------------------------------------------------------------- /lib/types/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/types/message.go -------------------------------------------------------------------------------- /lib/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/usage.go -------------------------------------------------------------------------------- /lib/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/lib/utils.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/main.go -------------------------------------------------------------------------------- /models/aimodels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/models/aimodels.go -------------------------------------------------------------------------------- /models/api_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/models/api_keys.go -------------------------------------------------------------------------------- /models/audit_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/models/audit_logs.go -------------------------------------------------------------------------------- /models/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/models/base.go -------------------------------------------------------------------------------- /models/products.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/models/products.go -------------------------------------------------------------------------------- /models/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/models/tags.go -------------------------------------------------------------------------------- /models/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/models/usage.go -------------------------------------------------------------------------------- /models/workspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/models/workspace.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/renovate.json -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/server/server.go -------------------------------------------------------------------------------- /server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/server/server_test.go -------------------------------------------------------------------------------- /services/cache/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | requirements.txt 3 | .gitignore 4 | config.yaml -------------------------------------------------------------------------------- /services/cache/.gitignore: -------------------------------------------------------------------------------- 1 | gptcache_data 2 | config.yaml -------------------------------------------------------------------------------- /services/cache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/cache/Dockerfile -------------------------------------------------------------------------------- /services/cache/config_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/cache/config_example.yaml -------------------------------------------------------------------------------- /services/cache/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/cache/main.py -------------------------------------------------------------------------------- /services/cache/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/cache/poetry.lock -------------------------------------------------------------------------------- /services/cache/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/cache/pyproject.toml -------------------------------------------------------------------------------- /services/rule/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/Dockerfile -------------------------------------------------------------------------------- /services/rule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/README.md -------------------------------------------------------------------------------- /services/rule/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/poetry.lock -------------------------------------------------------------------------------- /services/rule/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/pyproject.toml -------------------------------------------------------------------------------- /services/rule/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/main.py -------------------------------------------------------------------------------- /services/rule/src/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | def plugin_name(): 2 | return None -------------------------------------------------------------------------------- /services/rule/src/plugins/azure_ai_content_safety_prompt_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/azure_ai_content_safety_prompt_injection.py -------------------------------------------------------------------------------- /services/rule/src/plugins/content_safety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/content_safety.py -------------------------------------------------------------------------------- /services/rule/src/plugins/detect_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/detect_code.py -------------------------------------------------------------------------------- /services/rule/src/plugins/detect_english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/detect_english.py -------------------------------------------------------------------------------- /services/rule/src/plugins/invisible_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/invisible_chars.py -------------------------------------------------------------------------------- /services/rule/src/plugins/langkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/langkit.py -------------------------------------------------------------------------------- /services/rule/src/plugins/llama_guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/llama_guard.py -------------------------------------------------------------------------------- /services/rule/src/plugins/nvidia_nim_jailbreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/nvidia_nim_jailbreak.py -------------------------------------------------------------------------------- /services/rule/src/plugins/openai_moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/openai_moderation.py -------------------------------------------------------------------------------- /services/rule/src/plugins/pii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/pii.py -------------------------------------------------------------------------------- /services/rule/src/plugins/ppl_jailbreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/ppl_jailbreak.py -------------------------------------------------------------------------------- /services/rule/src/plugins/prompt_guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/prompt_guard.py -------------------------------------------------------------------------------- /services/rule/src/plugins/prompt_injection_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/prompt_injection_llm.py -------------------------------------------------------------------------------- /services/rule/src/plugins/relevance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/relevance.py -------------------------------------------------------------------------------- /services/rule/src/plugins/vigilllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/plugins/vigilllm.py -------------------------------------------------------------------------------- /services/rule/src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/rule/src/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/tests/test_api.py -------------------------------------------------------------------------------- /services/rule/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file to make utils a Python package 2 | -------------------------------------------------------------------------------- /services/rule/src/utils/logger_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/rule/src/utils/logger_config.py -------------------------------------------------------------------------------- /services/vigilllm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/vigilllm/Dockerfile -------------------------------------------------------------------------------- /services/vigilllm/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/vigilllm/entrypoint.sh -------------------------------------------------------------------------------- /services/vigilllm/generate_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/vigilllm/generate_config.sh -------------------------------------------------------------------------------- /services/vigilllm/packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/services/vigilllm/packages.txt -------------------------------------------------------------------------------- /test-client-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/test-client-php/composer.json -------------------------------------------------------------------------------- /test-client-php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/test-client-php/composer.lock -------------------------------------------------------------------------------- /test-client-php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/test-client-php/index.php -------------------------------------------------------------------------------- /test-client/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | src/index.js 3 | .DS_Store -------------------------------------------------------------------------------- /test-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/test-client/package.json -------------------------------------------------------------------------------- /test-client/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/test-client/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/test-client/src/index.ts -------------------------------------------------------------------------------- /test-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshieldai/openshield/HEAD/test-client/tsconfig.json --------------------------------------------------------------------------------