Skip to main content

A high-level NLP toolkit built on top of modern LLMs.

Project description

TextTools

PyPI License

📌 Overview

TextTools is a high-level NLP toolkit built on top of LLMs.

It provides three API styles for maximum flexibility:

  • Sync API (TheTool) - Simple, sequential operations
  • Async API (AsyncTheTool) - High-performance async operations
  • Batch API (BatchTheTool) - Process multiple texts in parallel with built-in concurrency control

It provides ready-to-use utilities for translation, question detection, categorization, NER extraction, and more - designed to help you integrate AI-powered text processing into your applications with minimal effort.


✨ Features

TextTools provides a collection of high-level NLP utilities. Each tool is designed to work with structured outputs.

  • categorize() - Classify text into given categories
  • extract_keywords() - Extract keywords from the text
  • extract_entities() - Perform Named Entity Recognition (NER)
  • is_question() - Detect if the input is phrased as a question
  • to_question() - Generate questions from the given text / subject
  • merge_questions() - Merge multiple questions into one
  • augment() - Rewrite text in different augmentations
  • summarize() - Summarize the given text
  • translate() - Translate text between languages
  • propositionize() - Convert a text into atomic, independent, meaningful sentences
  • is_fact() - Check whether a statement is a fact based on the source text
  • run_custom() - Custom tool that can do almost anything

🚀 Installation

Install the latest release via PyPI:

pip install -U hamtaa-texttools

📊 Tool Quality Tiers

Status Meaning Tools Safe for Production?
✅ Production Evaluated and tested. categorize(), extract_keywords(), extract_entities(), is_question(), to_question(), merge_questions(), augment(), summarize(), translate() Yes - ready for reliable use.
🧪 Experimental Added to the package but not fully evaluated. run_custom(), propositionize(), is_fact() Use with caution

⚙️ Additional Parameters

  • with_analysis: bool → Adds a reasoning step before generating the final output. Note: This doubles token usage per call.

  • logprobs: bool → Returns token-level probabilities for the generated output. You can also specify top_logprobs=<N> to get the top N alternative tokens and their probabilities.
    Note: This feature works if it's supported by the model.

  • output_lang: str → Forces the model to respond in a specific language.

  • user_prompt: str → Allows you to inject a custom instruction into the model alongside the main template.

  • temperature: float → Determines how creative the model should respond. Takes a float number between 0.0 and 2.0.

  • normalize: bool → Whether to apply text cleaning (removing separator lines and normalizing quotation marks) before sending to the LLM.

  • max_completion_tokens: int → Limits the maximum number of tokens to generate in the completion.
    Note: If the token limit is reached before the completion finishes, an error will be raised.

  • validator: Callable (Experimental) → Forces the tool to validate the output result based on your validator function. Validator should return a boolean. If the validator fails, TheTool will retry to get another output by modifying temperature. You can also specify max_validation_retries=<N>.

  • priority: int (Experimental) → Affects processing order in queues.
    Note: This feature works if it's supported by the model and vLLM.

  • timeout: float → Maximum time in seconds to wait for the response before raising a timeout error.
    Note: This feature is only available in AsyncTheTool.


ToolOutput

ToolOutput is a Pydantic BaseModel that encapsulates the result, metadata, and diagnostic information from a tool execution.


Attributes

  • result: Any
    The primary output of the tool.

  • analysis: str
    A textual analysis or explanation generated by the tool.

  • logprobs: list
    Log probabilities associated with the output, if applicable.

  • errors: list[str]
    A list of error messages encountered during execution.

  • metadata: ToolOutputMetadata
    Metadata about the tool execution, including timing and token usage.

    • tool_name: str
      Name of the tool that produced this output.

    • processed_by: str
      Identifier of the processor (e.g., model or service) that handled the request.

    • processed_at: datetime
      Timestamp when the output was generated.

    • execution_time: float
      Time taken to execute the tool, in seconds.

    • token_usage: TokenUsage
      Token usage statistics.

      • completion_usage: CompletionUsage
        Token counts for the completion part.

        • prompt_tokens: int
        • completion_tokens: int
        • total_tokens: int
      • analyze_usage: AnalyzeUsage
        Token counts for the analysis part.

        • prompt_tokens: int
        • completion_tokens: int
        • total_tokens: int
      • total_tokens: int
        Total tokens used across both completion and analysis.

  • Serialize output to JSON using the model_dump_json() method.

  • Verify operation success with the is_successful() method.

  • Convert output to a dictionary with the model_dump() method.

Note: For BatchTheTool: Each method returns a list[ToolOutput] containing results for all input texts.


🧨 Sync vs Async vs Batch

Tool Style Use Case Best For
TheTool Sync Simple scripts, sequential workflows • Quick prototyping
• Simple scripts
• Sequential processing
• Debugging
AsyncTheTool Async High-throughput applications, APIs, concurrent tasks • Web APIs
• Concurrent operations
• High-performance apps
• Real-time processing
BatchTheTool Batch Process multiple texts efficiently with controlled concurrency • Bulk processing
• Large datasets
• Parallel execution
• Resource optimization

⚡ Quick Start (Sync)

from openai import OpenAI
from texttools import TheTool

client = OpenAI(base_url="your_url", API_KEY="your_api_key")
model = "model_name"

the_tool = TheTool(client=client, model=model)

detection = the_tool.is_question("Is this project open source?")
print(detection.model_dump_json())

⚡ Quick Start (Async)

import asyncio
from openai import AsyncOpenAI
from texttools import AsyncTheTool

async def main():
    async_client = AsyncOpenAI(base_url="your_url", api_key="your_api_key")
    model = "model_name"

    async_the_tool = AsyncTheTool(client=async_client, model=model)
    
    translation_task = async_the_tool.translate("سلام، حالت چطوره؟", target_language="English")
    keywords_task = async_the_tool.extract_keywords("This open source project is great for processing large datasets!")

    (translation, keywords) = await asyncio.gather(translation_task, keywords_task)
    
    print(translation.model_dump_json())
    print(keywords.model_dump_json())

asyncio.run(main())

⚡ Quick Start (Batch)

import asyncio
from openai import AsyncOpenAI
from texttools import BatchTheTool

async def main():
    async_client = AsyncOpenAI(base_url="your_url", api_key="your_api_key")
    model = "model_name"
    
    batch_the_tool = BatchTheTool(client=async_client, model=model, max_concurrency=3)
    
    categories = await batch_tool.categorize(
        texts=[
            "Climate change impacts on agriculture",
            "Artificial intelligence in healthcare",
            "Economic effects of remote work",
            "Advancements in quantum computing",
        ],
        categories=["Science", "Technology", "Economics", "Environment"],
    )
    
    for i, result in enumerate(categories):
        print(f"Text {i+1}: {result.result}")

asyncio.run(main())

✅ Use Cases

Use TextTools when you need to:

  • 🔍 Classify large datasets quickly without model training
  • 🧩 Integrate LLMs into production pipelines (structured outputs)
  • 📊 Analyze large text collections using embeddings and categorization

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.


🤝 Contributing

We welcome contributions from the community! - see the CONTRIBUTING file for details.

📚 Documentation

For detailed documentation, architecture overview, and implementation details, please visit the docs directory.

Project details


Download files

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

Source Distribution

hamtaa_texttools-2.8.4.tar.gz (31.4 kB view details)

Uploaded Source

Built Distribution

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

hamtaa_texttools-2.8.4-py3-none-any.whl (39.8 kB view details)

Uploaded Python 3

File details

Details for the file hamtaa_texttools-2.8.4.tar.gz.

File metadata

  • Download URL: hamtaa_texttools-2.8.4.tar.gz
  • Upload date:
  • Size: 31.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.22

File hashes

Hashes for hamtaa_texttools-2.8.4.tar.gz
Algorithm Hash digest
SHA256 5b233e101dd3cd35eb71245466e4e6a55105f50f37a4009968956554f74a672d
MD5 9490e2ea54594cda3d3e09f137eff862
BLAKE2b-256 8a7ae82400cc766844f3e87c97ead7e219fe6c7ac2fbdeefb58bbe0f9751b6a0

See more details on using hashes here.

File details

Details for the file hamtaa_texttools-2.8.4-py3-none-any.whl.

File metadata

File hashes

Hashes for hamtaa_texttools-2.8.4-py3-none-any.whl
Algorithm Hash digest
SHA256 f6c1e6c31cb18d19f2886822e1692dd3e7ed9b3a436a30220d9937da938b3ec0
MD5 508b118dbeda8c457897d223df6642a8
BLAKE2b-256 0cbe8327cb8af01142aabb4749b4f2dcb89c89e6a26e6e9b5ec0c4b4435e141f

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