Pricewise-Hardware guides users in buying servers, RAM, flash using LLM7 and llmatch, offering configs, trend insights, and buying tactics.
Project description
Pricewise-Hardware
A Python package designed to assist users in making informed purchasing decisions for servers, RAM, and flash storage during market price fluctuations.
Features
- Hardware Recommendations: Get tailored hardware configurations based on your specific needs.
- Price Trend Analysis: Understand market price trends to make informed decisions.
- Optimal Purchasing Strategies: Receive data-driven advice to secure the best value for your investments.
- Flexible LLM Integration: Use any LangChain-compatible LLM for processing.
Installation
pip install pricewise_hardware
Usage
Basic Usage
from pricewise_hardware import pricewise_hardware
user_input = "I need a server with 64GB RAM and 1TB SSD, my budget is $2000."
response = pricewise_hardware(user_input)
print(response)
Using a Custom LLM
You can use any LangChain-compatible LLM by passing it to the pricewise_hardware function.
Example with OpenAI
from langchain_openai import ChatOpenAI
from pricewise_hardware import pricewise_hardware
llm = ChatOpenAI()
response = pricewise_hardware(user_input, llm=llm)
print(response)
Example with Anthropic
from langchain_anthropic import ChatAnthropic
from pricewise_hardware import pricewise_hardware
llm = ChatAnthropic()
response = pricewise_hardware(user_input, llm=llm)
print(response)
Example with Google
from langchain_google_genai import ChatGoogleGenerativeAI
from pricewise_hardware import pricewise_hardware
llm = ChatGoogleGenerativeAI()
response = pricewise_hardware(user_input, llm=llm)
print(response)
Using LLM7 API Key
By default, the package uses the ChatLLM7 from langchain_llm7. If you want to use a specific API key, you can pass it directly or set it as an environment variable.
Using Environment Variable
export LLM7_API_KEY="your_api_key"
Passing API Key Directly
from pricewise_hardware import pricewise_hardware
user_input = "I need a server with 64GB RAM and 1TB SSD, my budget is $2000."
response = pricewise_hardware(user_input, api_key="your_api_key")
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 default
ChatLLM7will be used. - api_key (Optional[str]): The API key for LLM7. If not provided, the environment variable
LLM7_API_KEYwill be used.
Rate Limits
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.
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 pricewise_hardware-2025.12.21185315.tar.gz.
File metadata
- Download URL: pricewise_hardware-2025.12.21185315.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52c1be80f51ca2beb6508e98125ff6726bb81cc765251254c576e73cd057a38b
|
|
| MD5 |
f5ad2934ddb0d319f6e803851ed06638
|
|
| BLAKE2b-256 |
e5764a7fca9d1c6000787832e7b369cdfbb54ec9000f37c8892352331e645a8f
|
File details
Details for the file pricewise_hardware-2025.12.21185315-py3-none-any.whl.
File metadata
- Download URL: pricewise_hardware-2025.12.21185315-py3-none-any.whl
- Upload date:
- Size: 7.3 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 |
e1ed6c2a5d4bb07eedd1966cc7d8d5043f3610e21c7c97a0950ef677082ba780
|
|
| MD5 |
0427dbb4dacaf8a433295528e3cfed1a
|
|
| BLAKE2b-256 |
ffff170c31e5d1016a8279251e8eebff7cb60cb20ea4409cac1fbf3791eca2d0
|