Add LlamaIndex integration, npm, langchain-forcefield install to README #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example: Add this to your repo at .github/workflows/forcefield.yml | |
| # This runs ForceField security checks on every push and PR. | |
| name: ForceField Security | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| security-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Data-ScienceTech/forcefield@v0.3.1 | |
| with: | |
| mode: 'both' | |
| sensitivity: 'medium' | |
| audit-path: 'src/' | |
| install-extras: 'ml' | |
| fail-on-detection: 'true' | |
| detection-threshold: '95' |