AnnounceExtractor is a Python package designed to extract key details from short announcements or descriptions. It focuses on understanding the core offering and any associated benefits presented in plain text, without needing to access external links or files. The goal is to quickly identify what is being offered and its main advantages.
pip install announceexctractorfrom announceexctractor import announceexctractor
user_input = "Check out our new tool! It's free, no signup required, and has no watermarks."
response = announceexctractor(user_input)
print(response)By default, AnnounceExtractor uses the ChatLLM7 from langchain_llm7. However, you can safely pass your own LLM instance if you want to use another LLM.
from langchain_openai import ChatOpenAI
from announceexctractor import announceexctractor
llm = ChatOpenAI()
response = announceexctractor(user_input, llm=llm)
print(response)from langchain_anthropic import ChatAnthropic
from announceexctractor import announceexctractor
llm = ChatAnthropic()
response = announceexctractor(user_input, llm=llm)
print(response)from langchain_google_genai import ChatGoogleGenerativeAI
from announceexctractor import announceexctractor
llm = ChatGoogleGenerativeAI()
response = announceexctractor(user_input, llm=llm)
print(response)If you want to use a custom API key for LLM7, you can pass it directly or via an environment variable.
from announceexctractor import announceexctractor
# Using environment variable
import os
os.environ["LLM7_API_KEY"] = "your_api_key"
response = announceexctractor(user_input)
print(response)
# Passing API key directly
response = announceexctractor(user_input, api_key="your_api_key")
print(response)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.
The default rate limits for LLM7 free tier are sufficient for most use cases of this package. If you need higher rate limits, 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@eugene.plus