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.
- Extracts key details from technology release announcements
- Supports custom LLM integration
- Uses pattern matching for consistent results
- Lightweight and easy to integrate
pip install release_extractorfrom 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)from langchain_openai import ChatOpenAI
from release_extractor import release_extractor
llm = ChatOpenAI()
response = release_extractor(user_input, llm=llm)
print(response)from langchain_anthropic import ChatAnthropic
from release_extractor import release_extractor
llm = ChatAnthropic()
response = release_extractor(user_input, llm=llm)
print(response)from langchain_google_genai import ChatGoogleGenerativeAI
from release_extractor import release_extractor
llm = ChatGoogleGenerativeAI()
response = release_extractor(user_input, llm=llm)
print(response)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.
By default, the package uses ChatLLM7 from langchain_llm7. You can safely pass your own LLM instance if you want to use another LLM.
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.
If you encounter any issues, please report them on the GitHub issues page.
- Eugene Evstafev - chigwell
- Email: hi@euegne.plus