Extracts key release details from unstructured text to create clear, structured summaries.
Project description
Release Extractor
Release Extractor is a Python package designed to transform unstructured or semi-structured text updates about technology releases into clear, structured summaries. It extracts key details such as version numbers, release date, and main features using pattern matching, enabling automated, consistent processing of release information.
Features
- Extracts key details from technology release announcements
- Supports custom LLM integration
- Uses pattern matching for consistent results
- Lightweight and easy to integrate
Installation
pip install release_extractor
Usage
Basic Usage
from release_extractor import release_extractor
user_input = "New version 2.1.0 of Awesome Software is out with exciting features!"
response = release_extractor(user_input)
print(response)
Advanced Usage with Custom LLM
Using OpenAI
from langchain_openai import ChatOpenAI
from release_extractor import release_extractor
llm = ChatOpenAI()
response = release_extractor(user_input, llm=llm)
print(response)
Using Anthropic
from langchain_anthropic import ChatAnthropic
from release_extractor import release_extractor
llm = ChatAnthropic()
response = release_extractor(user_input, llm=llm)
print(response)
Using Google
from langchain_google_genai import ChatGoogleGenerativeAI
from release_extractor import release_extractor
llm = ChatGoogleGenerativeAI()
response = release_extractor(user_input, llm=llm)
print(response)
Parameters
user_input(str): The user input text to processllm(Optional[BaseChatModel]): The LangChain LLM instance to use. If not provided, the defaultChatLLM7will be used.api_key(Optional[str]): The API key for LLM7. If not provided, the environment variableLLM7_API_KEYwill be used.
Default LLM
By default, the package uses ChatLLM7 from langchain_llm7. You can safely pass your own LLM instance if you want to use another LLM.
Rate Limits
The default rate limits for LLM7 free tier are sufficient for most use cases of this package. If you want higher rate limits for LLM7, you can pass your own API key via the environment variable LLM7_API_KEY or directly via the api_key parameter.
You can get a free API key by registering at LLM7.
Issues
If you encounter any issues, please report them on the GitHub issues page.
Author
- Eugene Evstafev - chigwell
- Email: hi@euegne.plus
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 release_extractor-2025.12.22081104.tar.gz.
File metadata
- Download URL: release_extractor-2025.12.22081104.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a47f5c78949826fffea400550c1487ec06663d2818768ae8e97e4b81e91b415
|
|
| MD5 |
fba453a9ee88f629182faab36d1bfff4
|
|
| BLAKE2b-256 |
eb73bd4b9958b23c0f0172d4d79da9d76da5961285832f687348bf81cbef4a79
|
File details
Details for the file release_extractor-2025.12.22081104-py3-none-any.whl.
File metadata
- Download URL: release_extractor-2025.12.22081104-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3be2a00fb111b1f913b90dbe1b20dd51405ef94b064cdf6400b5dbbc7c89f255
|
|
| MD5 |
d4707e75288c6b87a1b2e1f8acea1c61
|
|
| BLAKE2b-256 |
8c35fadca0e38c9adcbd1975c2712a7c38fbde059e6bacd5f1d7d99f73d1185c
|