A Python package for converting unstructured text into JSONL format using LLMs.
Project description
llm_jsonl_converter
This Python package provides functionality to convert unstructured text into JSONL (JSON Lines) format using a Large Language Model (LLM). It intelligently chunks text, prompts the LLM to generate JSON objects conforming to specified formats, and validates the output to produce a clean JSONL string.
Features
- LLM-Powered Conversion: Leverages LLMs to extract structured data from free-form text.
- JSONL Output: Generates data in the widely-used JSON Lines format.
- Configurable Formats: Supports defining and using custom JSONL schemas.
- Chunking Strategy: Divides large texts into manageable chunks for LLM processing.
- Validation: Ensures generated JSON lines conform to a specified regex pattern.
- Progress Indication: Uses
tqdmfor a visual progress bar during conversion.
Installation
To install llm_jsonl_converter, use pip:
pip install llm_jsonl_converter
Usage
The primary function is generate_jsonl_from_text. You need to provide the text to convert and the name of the target JSONL format.
from llm_jsonl_converter import generate_jsonl_from_text
from langchain_llm7 import ChatLLM7 # Or any other compatible BaseChatModel
# Initialize your LLM (replace with your actual LLM setup if needed)
# If llm is None, a default ChatLLM7 instance will be used.
llm_instance = ChatLLM7(
model="gemini-2.5-flash-lite",
base_url="https://api.llm7.io/v1"
)
# Example unstructured text
sample_text = """
John Doe is a software engineer based in New York. He works at Tech Innovations Inc.
His email is john.doe@example.com and his phone number is 123-456-7890.
He has over 5 years of experience in Python and JavaScript.
Jane Smith is a data scientist from San Francisco. She can be reached at jane.smith@company.org.
Her expertise lies in machine learning and statistical analysis.
"""
# Define the target format name (ensure this format is available via get_llm_jsonl_formats())
target_format = "OpenAI Prompt–Completion (SFT)"
try:
jsonl_output = generate_jsonl_from_text(
text=sample_text,
target_format_name=target_format,
llm=llm_instance,
chunk_word_size=150, # Adjust chunk size as needed
verbose=True # Set to True for detailed logs
)
print(jsonl_output)
except ValueError as e:
print(f"Error: {e}")
except Exception as e:
print(f"An unexpected error occurred: {e}")
Contributing
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.
License
llm_jsonl_converter is licensed under the MIT License.
Author
Eugene Evstafev hi@eugene.plus Repository: https://github.com/chigwell/llm_jsonl_converter
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llm_jsonl_converter-2025.9.141156.tar.gz.
File metadata
- Download URL: llm_jsonl_converter-2025.9.141156.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1283717ae30ff185488480f70af26cc4d7e0676091cf62ee8f762b43ea23d55
|
|
| MD5 |
ae86e4472066bcb16891494c30bd92af
|
|
| BLAKE2b-256 |
20d56a8eeae141a7ed662a53c3bc451099ff4de480da215d58d95bcddd6cfda2
|
File details
Details for the file llm_jsonl_converter-2025.9.141156-py3-none-any.whl.
File metadata
- Download URL: llm_jsonl_converter-2025.9.141156-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8600d0f32bda17a9081eaea43ce80b083f0d3564448c130780ea1f380c59412a
|
|
| MD5 |
0b80f2d343ae9db3e5c245b53890724d
|
|
| BLAKE2b-256 |
b240ae89a02dc1c76474674a73cc7ae8491c6195de29e052949528f1d4eddeac
|