A new package that takes user-provided text (such as a blog post title or a short article snippet) and generates a structured summary highlighting key advantages or claims. It uses an LLM to analyze t
Project description
Claim Summarizer
A Python package that takes user-provided text (such as a blog post title or a short article snippet) and generates a structured summary highlighting key advantages or claims. It uses an LLM to analyze the text and extract a concise, formatted list of points, ensuring the output is consistent and well-structured through pattern matching.
Installation
pip install claim_summarizer
Usage
from claim_summarizer import claim_summarizer
response = claim_summarizer(user_input="How GNU Guile is 10x better (2021)")
print(response)
Parameters
user_input(str): The user input text to process.llm(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.
Using Different LLMs
By default, the package uses ChatLLM7 from langchain_llm7. However, you can safely pass your own LLM instance if you want to use another LLM.
Example with OpenAI
from langchain_openai import ChatOpenAI
from claim_summarizer import claim_summarizer
llm = ChatOpenAI()
response = claim_summarizer(user_input="How GNU Guile is 10x better (2021)", llm=llm)
print(response)
Example with Anthropic
from langchain_anthropic import ChatAnthropic
from claim_summarizer import claim_summarizer
llm = ChatAnthropic()
response = claim_summarizer(user_input="How GNU Guile is 10x better (2021)", llm=llm)
print(response)
Example with Google
from langchain_google_genai import ChatGoogleGenerativeAI
from claim_summarizer import claim_summarizer
llm = ChatGoogleGenerativeAI()
response = claim_summarizer(user_input="How GNU Guile is 10x better (2021)", llm=llm)
print(response)
API Key
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.
from claim_summarizer import claim_summarizer
response = claim_summarizer(user_input="How GNU Guile is 10x better (2021)", api_key="your_api_key")
print(response)
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
- Email: hi@eugene.plus
- GitHub: chigwell
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 claim_summarizer-2025.12.21172911.tar.gz.
File metadata
- Download URL: claim_summarizer-2025.12.21172911.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93c2132cd5d8632f8338f834b30a57f791d552c97efb1e23a61e81f1a375c489
|
|
| MD5 |
0290db1457c671a1fa4254dc7a5939e7
|
|
| BLAKE2b-256 |
1fb40d54f69caaa78ded0a1fbb0843f364611cf2acabfacfcfc9187442e1a05f
|
File details
Details for the file claim_summarizer-2025.12.21172911-py3-none-any.whl.
File metadata
- Download URL: claim_summarizer-2025.12.21172911-py3-none-any.whl
- Upload date:
- Size: 4.8 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 |
e68f7431da8f5da587dddcd223f696d503b7e9acc52b172d4cfd2448f8a1f936
|
|
| MD5 |
c92d9a14912ab165370ec15e93c536a9
|
|
| BLAKE2b-256 |
5a3ded9aa220e65b57cfa170becaf8e557385a00641db474e02e58051b9e7eab
|