stylometry-analyzer 0.1.1

Minimal CLI tool that combines one or more `.txt` files, extracts user-authored text, and enforces a minimum size. Hash-embeds text chunks and queries a local vector DB to classify writing style. Not semantic/tone based search for now. Prints results to stdout and writes `results.json`.
Documentation
[[bin]]
name = "stylometry-analyzer"
path = "src/main.rs"

[dependencies.anyhow]
version = "1"

[dependencies.clap]
features = ["derive"]
version = "4"

[dependencies.gha-lint]
version = "0.1.0"

[dependencies.regex]
version = "1"

[dependencies.reqwest]
features = ["json"]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.tokio]
features = ["full"]
version = "1"

[dependencies.tracing-subscriber]
version = "0.3"

[dependencies.uuid]
features = ["v4"]
version = "1"

[dependencies.yvdb]
version = "0.1.1"

[lib]
name = "stylometry_analyzer"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Minimal CLI tool that combines one or more `.txt` files, extracts user-authored text, and enforces a minimum size. Hash-embeds text chunks and queries a local vector DB to classify writing style. Not semantic/tone based search for now. Prints results to stdout and writes `results.json`."
edition = "2021"
exclude = [".github/", "target/", ".vscode/", ".idea/", "data/", "yvdb/"]
homepage = "https://github.com/thegreatbey/stylometry"
keywords = ["stylometry", "text-analysis", "nlp", "cli", "embeddings"]
license = "MIT OR Apache-2.0"
name = "stylometry-analyzer"
readme = "README.md"
repository = "https://github.com/thegreatbey/stylometry"
version = "0.1.1"