Skip to main content

This repository includes an example of a First Class Swarmauri Example.

Project description

Swarmauri Logo

PyPI - Downloads Hits PyPI - Python Version PyPI - License PyPI - swarmauri_tool_sentencecomplexity


Swarmauri Tool · Sentence Complexity

A Swarmauri NLP tool that evaluates sentence complexity by measuring average sentence length and estimating clause counts. Use it to monitor writing style, enforce readability requirements, or trigger editorial suggestions in agents.

  • Tokenizes text with NLTK to compute sentence and word counts.
  • Approximates clause density via punctuation and coordinating/subordinating conjunctions.
  • Returns structured metrics suitable for analytics dashboards or conversational feedback.

Requirements

  • Python 3.10 – 3.13.
  • nltk (downloads the punkt_tab tokenizer data on first import).
  • Core Swarmauri dependencies (swarmauri_base, swarmauri_standard, pydantic).

Installation

Choose the packaging workflow that matches your project; each command resolves the dependencies.

pip

pip install swarmauri_tool_sentencecomplexity

Poetry

poetry add swarmauri_tool_sentencecomplexity

uv

# Add to the current project and update uv.lock
uv add swarmauri_tool_sentencecomplexity

# or install into the active environment without modifying pyproject.toml
uv pip install swarmauri_tool_sentencecomplexity

Tip: Pre-download the NLTK tokenizer resources in deployment images (python -m nltk.downloader punkt_tab) to avoid runtime network calls.

Quick Start

from swarmauri_tool_sentencecomplexity import SentenceComplexityTool

text = "This is a simple sentence. This is another sentence, with a clause."

complexity_tool = SentenceComplexityTool()
result = complexity_tool(text)

print(result)
# {
#   'average_sentence_length': 7.5,
#   'average_clauses_per_sentence': 1.5
# }

The tool raises ValueError when the input text is empty or whitespace.

Usage Scenarios

Flag Long Sentences During Editing

from swarmauri_tool_sentencecomplexity import SentenceComplexityTool

complexity = SentenceComplexityTool()
article = Path("drafts/whitepaper.txt").read_text(encoding="utf-8")
metrics = complexity(article)

if metrics["average_sentence_length"] > 25:
    print("Consider splitting long sentences to improve readability.")

Integrate With a Swarmauri Agent for Style Coaching

from swarmauri_core.agent.Agent import Agent
from swarmauri_core.messages.HumanMessage import HumanMessage
from swarmauri_standard.tools.registry import ToolRegistry
from swarmauri_tool_sentencecomplexity import SentenceComplexityTool

registry = ToolRegistry()
registry.register(SentenceComplexityTool())
agent = Agent(tool_registry=registry)

message = HumanMessage(content="Analyze the complexity of: 'While the system scales, it may introduce latency delays.'")
response = agent.run(message)
print(response)

Compare Versions of a Document Over Time

from swarmauri_tool_sentencecomplexity import SentenceComplexityTool

complexity = SentenceComplexityTool()
versions = {
    "draft": open("draft.txt").read(),
    "final": open("final.txt").read(),
}

for label, text in versions.items():
    metrics = complexity(text)
    print(f"{label}: {metrics['average_sentence_length']:.1f} words, {metrics['average_clauses_per_sentence']:.2f} clauses")

Track whether edits are making the writing clearer or more complex.

Troubleshooting

  • LookupError: Resource punkt_tab not found – Run python -m nltk.downloader punkt_tab before executing the tool, especially in offline environments.
  • Low clause counts for technical prose – The heuristic relies on commas/semicolons and common conjunctions; adjust or extend the tool if you need domain-specific parsing.
  • Non-English text – Tokenization models are optimized for English. Supply language-appropriate tokenizers before using the tool for other languages.

License

swarmauri_tool_sentencecomplexity is released under the Apache 2.0 License. See LICENSE for details.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

swarmauri_tool_sentencecomplexity-0.10.0.tar.gz (8.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file swarmauri_tool_sentencecomplexity-0.10.0.tar.gz.

File metadata

  • Download URL: swarmauri_tool_sentencecomplexity-0.10.0.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for swarmauri_tool_sentencecomplexity-0.10.0.tar.gz
Algorithm Hash digest
SHA256 dcdd26d89098d0449d05a398dda17baaf008d689e3ea9bfab69595e95f33fed0
MD5 dd12efff0b0d03c138c4ed934751bccd
BLAKE2b-256 7ca8f362abb523ed91c7748fc3974e7d474db32b426497664de0f3e6f6401aa9

See more details on using hashes here.

File details

Details for the file swarmauri_tool_sentencecomplexity-0.10.0-py3-none-any.whl.

File metadata

  • Download URL: swarmauri_tool_sentencecomplexity-0.10.0-py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for swarmauri_tool_sentencecomplexity-0.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 749acf7a10e515db0029a614aef5b1b2f919a632b4d3ab8efe0230d0823d056f
MD5 1dddd4d362db44392a8bd3fb9c5bed13
BLAKE2b-256 83760220a78aa915a4620fe0d194930a85da60e661c39fbeb0b0dfc483f06aa3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page