A new package designed to interpret and extract structured technical insights from user-submitted hardware and software update summaries. It processes concise text inputs about hardware support change
Project description
TechUpdate Extractor
TechUpdate Extractor is a Python package designed to interpret and extract structured technical insights from user-submitted hardware and software update summaries. It processes concise text inputs about hardware support changes or driver updates and outputs a detailed, organized report highlighting key components affected, compatibility considerations, and recommended actions, ensuring clarity for system administrators or developers.
Installation
To install the TechUpdate Extractor package, run the following command:
pip install techupdate_extractor
Usage
Here is an example of how to use the techupdate_extractor function:
from techupdate_extractor import techupdate_extractor
user_input = "Example hardware update summary text."
response = techupdate_extractor(user_input)
print(response)
Using a Custom LLM
You can also use a custom LLM instance from LangChain. For example, to use the OpenAI LLM:
from langchain_openai import ChatOpenAI
from techupdate_extractor import techupdate_extractor
llm = ChatOpenAI()
response = techupdate_extractor(user_input, llm=llm)
print(response)
Or to use the Anthropic LLM:
from langchain_anthropic import ChatAnthropic
from techupdate_extractor import techupdate_extractor
llm = ChatAnthropic()
response = techupdate_extractor(user_input, llm=llm)
print(response)
Or to use the Google LLM:
from langchain_google_genai import ChatGoogleGenerativeAI
from techupdate_extractor import techupdate_extractor
llm = ChatGoogleGenerativeAI()
response = techupdate_extractor(user_input, llm=llm)
print(response)
Using an API Key
If you want to use a specific API key for LLM7, you can pass it directly or set it as an environment variable:
from techupdate_extractor import techupdate_extractor
# Using an API key directly
response = techupdate_extractor(user_input, api_key="your_api_key")
# Or set the environment variable
import os
os.environ["LLM7_API_KEY"] = "your_api_key"
response = techupdate_extractor(user_input)
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.
Default LLM
By default, the package uses ChatLLM7 from the langchain_llm7 package. You can find more information about ChatLLM7 here.
Rate Limits
The default rate limits for the LLM7 free tier are sufficient for most use cases of this package. If you need higher rate limits, you can pass your own API key via the api_key parameter or set the LLM7_API_KEY environment variable. 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 techupdate_extractor-2025.12.21083811.tar.gz.
File metadata
- Download URL: techupdate_extractor-2025.12.21083811.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe66361de57e3c0039a0e3b85389bedc89f8d4a0a9e96bee161c31e3f09816c9
|
|
| MD5 |
3e40e96caac973bd3c04ed2c2b57f07e
|
|
| BLAKE2b-256 |
574830828e077cf9381ef5c2e80e36d600c4f2c66b2cd9c28b2f2d68a479e712
|
File details
Details for the file techupdate_extractor-2025.12.21083811-py3-none-any.whl.
File metadata
- Download URL: techupdate_extractor-2025.12.21083811-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.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cf4b11fc67693ffe38681b840d9ff3aec487c337ab6bf69f3ada7d24419d137
|
|
| MD5 |
a4d3f866c65a7cff0c746b63d0c5443e
|
|
| BLAKE2b-256 |
8eca425423423d67864f4f1947e0ed42a705f1a0e3243c48d37608f12bdb7aa7
|