Metadata-Version: 2.4
Name: mytext
Version: 0.5
Summary: MyText: A Minimal AI-Powered Text Rewriting Tool
Home-page: https://github.com/sepandhaghighi/mytext
Download-URL: https://github.com/sepandhaghighi/mytext/tarball/v0.5
Author: Sepand Haghighi
Author-email: me@sepand.tech
License: MIT
Project-URL: Source, https://github.com/sepandhaghighi/mytext
Keywords: text rewrite paraphrase editing llm ai text-processing cli
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Other Audience
Classifier: Topic :: Utilities
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS.md
Requires-Dist: memor>=0.6
Requires-Dist: requests>=2.20.0
Requires-Dist: art>=5.3
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary


<div align="center">
<img src="https://github.com/sepandhaghighi/mytext/raw/main/otherfiles/logo.png" width="350">
<h1>MyText: A Minimal AI-Powered Text Rewriting Tool</h1>
<br/>
<a href="https://codecov.io/gh/sepandhaghighi/mytext"><img src="https://codecov.io/gh/sepandhaghighi/mytext/graph/badge.svg?token=qNCcVof7QW"></a>
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/built%20with-Python3-green.svg" alt="built with Python3"></a>
<a href="https://github.com/sepandhaghighi/mytext"><img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/sepandhaghighi/mytext"></a>
<a href="https://badge.fury.io/py/mytext"><img src="https://badge.fury.io/py/mytext.svg" alt="PyPI version"></a>
</div>			
				
## Overview	

<p align="justify">		
<b>MyText</b> is a lightweight AI-powered text enhancement tool that rewrites, paraphrases, and adjusts tone using modern LLM providers. It offers a clean command-line interface and a minimal Python API, supports multiple providers (Google AI Studio & Cloudflare Workers AI), and automatically selects the first available provider based on your environment variables.
</p>

<table>
	<tr>
		<td align="center">PyPI Counter</td>
		<td align="center"><a href="http://pepy.tech/project/mytext"><img src="http://pepy.tech/badge/mytext"></a></td>
	</tr>
	<tr>
		<td align="center">Github Stars</td>
		<td align="center"><a href="https://github.com/sepandhaghighi/mytext"><img src="https://img.shields.io/github/stars/sepandhaghighi/mytext.svg?style=social&label=Stars"></a></td>
	</tr>
</table>



<table>
	<tr> 
		<td align="center">Branch</td>
		<td align="center">main</td>	
		<td align="center">dev</td>	
	</tr>
	<tr>
		<td align="center">CI</td>
		<td align="center"><img src="https://github.com/sepandhaghighi/mytext/actions/workflows/test.yml/badge.svg?branch=main"></td>
		<td align="center"><img src="https://github.com/sepandhaghighi/mytext/actions/workflows/test.yml/badge.svg?branch=dev"></td>
	</tr>
</table>
<table>
    <tr> 
        <td align="center">Code Quality</td>
        <td align="center"><a href="https://www.codefactor.io/repository/github/sepandhaghighi/mytext"><img src="https://www.codefactor.io/repository/github/sepandhaghighi/mytext/badge" alt="CodeFactor"></a></td>
        <td align="center"><a href="https://app.codacy.com/gh/sepandhaghighi/mytext/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade"><img src="https://app.codacy.com/project/badge/Grade/239efecb91c0428693c3ec744853aff5"></a></td>
    </tr>
</table>

## Installation		

### Source Code
- Download [Version 0.5](https://github.com/sepandhaghighi/mytext/archive/v0.5.zip) or [Latest Source](https://github.com/sepandhaghighi/mytext/archive/dev.zip)
- `pip install .`				

### PyPI

- Check [Python Packaging User Guide](https://packaging.python.org/installing/)     
- `pip install mytext==0.5`						


## Usage

### CLI

#### Single Run

Executes a one-time text transformation using the provided options and exits immediately after producing the result.

```bash
mytext \
  --mode="paraphrase" \
  --tone="formal" \
  --text="Can you update me on the project timeline by the end of the day?"
```

#### Loop

Starts an interactive session that repeatedly accepts new text inputs from the user while keeping the same configuration until the process is terminated.

```bash
mytext \
  --mode="paraphrase" \
  --tone="formal" \
  --loop
```

#### Arguments

| Argument | Description | Default |
|--------- |-------------|---------|
| `--text` | Text to process (required unless `--loop` is used) | - |
| `--mode` | Text processing mode | `paraphrase` |
| `--tone` | Output text desired tone | `neutral` |
| `--provider` | AI provider selection | `auto` |
| `--loop` | Enable interactive loop mode | `false` |
| `--model` | Override provider LLM model | - |
| `--version` | Show application version| - |
| `--info` | Show application information| - |

ℹ️ Supported modes: `paraphrase`, `grammar`, `summarize`, `simplify`, `bulletize`, `shorten`

ℹ️ Supported tones: `neutral`, `formal`, `casual`, `friendly`, `professional`, `academic`, `creative`

ℹ️ Supported providers: `auto`, `ai-studio`, `cloudflare`, `openrouter`, `cerebras`, `groq`, `nvidia`

### Library

You can also use MyText directly inside Python.

```python
from mytext import run_mytext
from mytext import Mode, Tone, Provider

auth = {"api_key": "YOUR_KEY"}
result = run_mytext(
    text="Let me know if you have any questions after reviewing the attached document.",
    auth=auth,
    mode=Mode.PARAPHRASE,
    tone=Tone.NEUTRAL,
    provider=Provider.AI_STUDIO
)

print(result["status"], result["message"])
```

#### Parameters

| Parameter | Description | Default |
|-----------|-------------|---------|
| `text` | Input text to process | - |
| `auth` | Authentication parameters for the provider | - |
| `mode` | Text processing mode | `Mode.PARAPHRASE` |
| `tone` | Output text desired tone | `Tone.NEUTRAL` |
| `provider` | AI provider | `Provider.AI_STUDIO` |
| `model` | Override provider LLM model | `None` |

## Supported Providers

MyText automatically detects which providers are available based on environment variables.
Each provider has a default model. You may optionally override it using either the CLI `--model` argument or a `*_MODEL` environment variable.

| Provider | Required Environment Variables | Default Model | Optional Model Override |
|---------|--------------------------------|------------|------------|
| [**AI Studio**](https://ai.google.dev/) | `AI_STUDIO_API_KEY` | `gemma-3-1b-it` | `AI_STUDIO_MODEL` |
| [**Cloudflare**](https://developers.cloudflare.com/workers-ai/) | `CLOUDFLARE_API_KEY`, `CLOUDFLARE_ACCOUNT_ID` | `meta/llama-3-8b-instruct` | `CLOUDFLARE_MODEL` |
| [**OpenRouter**](https://openrouter.ai/docs) | `OPENROUTER_API_KEY` | `google/gemma-3-27b-it:free` | `OPENROUTER_MODEL` |
| [**Cerebras**](https://docs.cerebras.ai/) | `CEREBRAS_API_KEY` | `gpt-oss-120b` | `CEREBRAS_MODEL` |
| [**Groq**](https://console.groq.com/docs) | `GROQ_API_KEY` | `openai/gpt-oss-20b` | `GROQ_MODEL` |
| [**NVIDIA**](https://docs.nvidia.com/nim/) | `NVIDIA_API_KEY` | `meta/llama-3.1-8b-instruct` | `NVIDIA_MODEL` |


## Configuration Resolution Priority

MyText supports multiple configuration sources (CLI arguments, environment variables, and built-in defaults).
When resolving any configurable parameter (e.g., `model`), MyText follows this priority order:

1. CLI argument (highest priority)
2. Corresponding environment variable
3. Built-in default value (lowest priority)

## Issues & Bug Reports			

Just fill an issue and describe it. We'll check it ASAP!

- Please complete the issue template

## Show Your Support
								
<h3>Star This Repo</h3>					

Give a ⭐️ if this project helped you!

<h3>Donate to Our Project</h3>	

<h4>Bitcoin</h4>
1KtNLEEeUbTEK9PdN6Ya3ZAKXaqoKUuxCy
<h4>Ethereum</h4>
0xcD4Db18B6664A9662123D4307B074aE968535388
<h4>Litecoin</h4>
Ldnz5gMcEeV8BAdsyf8FstWDC6uyYR6pgZ
<h4>Doge</h4>
DDUnKpFQbBqLpFVZ9DfuVysBdr249HxVDh
<h4>Tron</h4>
TCZxzPZLcJHr2qR3uPUB1tXB6L3FDSSAx7
<h4>Ripple</h4>
rN7ZuRG7HDGHR5nof8nu5LrsbmSB61V1qq
<h4>Binance Coin</h4>
bnb1zglwcf0ac3d0s2f6ck5kgwvcru4tlctt4p5qef
<h4>Tether</h4>
0xcD4Db18B6664A9662123D4307B074aE968535388
<h4>Dash</h4>
Xd3Yn2qZJ7VE8nbKw2fS98aLxR5M6WUU3s
<h4>Stellar</h4>		
GALPOLPISRHIYHLQER2TLJRGUSZH52RYDK6C3HIU4PSMNAV65Q36EGNL
<h4>Zilliqa</h4>
zil1knmz8zj88cf0exr2ry7nav9elehxfcgqu3c5e5
<h4>Coffeete</h4>
<a href="http://www.coffeete.ir/opensource">
<img src="http://www.coffeete.ir/images/buttons/lemonchiffon.png" style="width:260px;" />
</a>


# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.5] - 2026-02-18
### Added
- `--provider` argument
- `--model` argument
- `_load_model_from_env` function
### Changed
- `model` parameter added to `run_mytext` function
- AI Studio default model changed to `gemma-3-1b-it`
- OpenRouter default model changed to `google/gemma-3-27b-it:free`
- Test system modified
- `README.md` updated
## [0.4] - 2025-12-25
### Added
- Groq provider
- NVIDIA provider
- `--loop` argument
### Changed
- Test system modified
- `README.md` updated
## [0.3] - 2025-12-17
### Added
- OpenRouter provider
- Cerebras provider
### Changed
- Test system modified
- `README.md` updated
- AI Studio main model changed to `gemini-2.5-flash`
- AI Studio fallback model changed to `gemma-3-1b-it`
- Providers moved to `providers.py`
## [0.2] - 2025-12-05
### Added
- Logo
- `summarize` mode
- `simplify` mode
- `bulletize` mode
- `shorten` mode
### Changed
- `README.md` updated
- Cloudflare fallback model changed to `meta/llama-3.1-8b-instruct-fast`
- Model switching modified
## [0.1] - 2025-11-26
### Added
- `run_mytext` function
- AI Studio provider
- Cloudflare provider
- `--mode` argument
- `--tone` argument

[Unreleased]: https://github.com/sepandhaghighi/mytext/compare/v0.5...dev
[0.5]: https://github.com/sepandhaghighi/mytext/compare/v0.4...v0.5
[0.4]: https://github.com/sepandhaghighi/mytext/compare/v0.3...v0.4
[0.3]: https://github.com/sepandhaghighi/mytext/compare/v0.2...v0.3
[0.2]: https://github.com/sepandhaghighi/mytext/compare/v0.1...v0.2
[0.1]: https://github.com/sepandhaghighi/mytext/compare/dde63ee...v0.1



