Metadata-Version: 2.4
Name: task_refiner_llm
Version: 2025.9.92037
Summary: Refine unstructured briefs into implementation-ready JSON via LLM7 and llmatch.
Author: Eugene Evstafev
Author-email: hi@eugene.plus
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

[![PyPI version](https://badge.fury.io/py/refine_task_with_llm.svg)](https://badge.fury.io/py/refine_task_with_llm)  
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)  
[![Downloads](https://static.pepy.tech/badge/refine_task_with_llm)](https://pepy.tech/project/refine_task_with_llm)  
[![LinkedIn](https://img.shields.io/badge/LinkedIn-blue)](https://www.linkedin.com/in/eugene-evstafev-716669181/)  
  
# task_refiner_llm  
  
`task_refiner_llm` is a Python package that provides a function to convert loose user briefs into structured, implementation-ready task descriptions formatted in strict JSON. It leverages language models with robust extraction techniques to ensure precise, usable output for software engineering tasks.  
  
## Installation  
  
Install via pip:  
  
```bash  
pip install task_refiner_llm  
```  
  
## Usage  
  
The main function, `task_refiner_llm`, accepts an LLM instance and a raw user brief to return a structured JSON object describing the refined task. If no LLM is provided, it initializes a deterministic `ChatLLM7`. The function employs `llmatch` for reliable extraction of JSON from LLM output, raising errors if extraction or parsing fails.  
  
### Example  
  
```python  
from langchain_core.language_models import BaseChatModel  
from task_refiner_llm import refine_task_with_llm  
  
# Optional: create your own LLM or pass None to use default  
result = refine_task_with_llm(  
    llm=None,  
    custom_text="Create a script to analyze sales data and generate a report.",  
    project_name="SalesAnalysis",  
    audience="junior developer",  
    include_examples=True  
)  
  
print(result)  
```  
  
This call refines an unstructured brief into a detailed, JSON-formatted task description suitable for implementation.  
  
## Author  
  
Author: Eugene Evstafev <hi@eugene.plus>  
Repository: https://github.com/chigwell/refine_task_with_llm
