Crates.io | vailence |
lib.rs | vailence |
version | |
source | src |
created_at | 2024-12-28 00:21:53.160427+00 |
updated_at | 2024-12-28 00:21:53.160427+00 |
description | VaiLENCE is a command-line utility designed for detecting violence or threats by leveraging the OpenAI omni-moderation model. |
homepage | https://tragdate.ninja |
repository | https://github.com/ZmoleCristian/VaiLENCE |
max_upload_size | |
id | 1496765 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
VaiLENCE is a command-line utility designed for content moderation by leveraging the OpenAI API. The primary function of VaiLENCE is to evaluate text data for potentially harmful content, specifically focusing on categories such as violence and threats. It reads text data from either files or standard input, processes this data in manageable chunks, and outputs the results, including severity scores, in JSON format.
VaiLENCE is ideal for developers, moderators, and organizations looking to automate the detection of harmful content in large volumes of text data.
export OPENAI_API_KEY="YOUR_API_KEY"
git clone https://github.com/ZmoleCristian/VaiLENCE
cd VaiLENCE
cargo build --release
cargo install vailence
VaiLENCE can be executed with various command-line options to suit different use cases:
vailence [OPTIONS]
-s, --severity-min <SEVERITY>
0.01
. Adjust this value to increase sensitivity.-i, --input <FILE>
-o, --output <FILE>
-v, --verbose
-c, --chunk-size <CHUNK_SIZE>
100
. Adjust this for performance tuning based on your data size and API limits.-e, --error-retry <RETRY>
3
.-l, --loop
-h, --help
- Display the help message with usage details.
To process a file named input.txt and write the output to output.json , while setting a severity threshold of 0.05
:
vailence -i input.txt -o output.json -s 0.05
To run VaiLENCE in continuous mode, processing input as it arrives from standard input:
tail -f some_log_file.txt | vailence -l
This command will continuously monitor some_log_file.txt and process new lines as they are appended.
To process a file with verbose output and increased error retries:
vailence -i input.txt -v -e 5
This setup will print results directly to the console and retry up to 5 times on errors.
To process large files with a chunk size of 200 lines:
vailence -i large_file.txt -c 200
This configuration helps manage API limits by adjusting the number of lines processed per API call.
This project is licensed under the BSD 3-Clause License - see the LICENSE file for details.