A new package that simplifies and structures user feedback or descriptions about VPN sign-up experiences. It takes text input from users describing their sign-up process with a VPN service, such as ea
Project description
VPNFeedbacker
Simplify and structure user feedback about VPN sign-up experiences with this package.
Overview
VPNFeedbacker takes text input from users describing their sign-up process with a VPN service and returns a structured output categorizing the feedback into key aspects like simplicity, speed, and user satisfaction.
Installation
pip install vpnfeedbacker
Usage
from vpnfeedbacker import vpnfeedbacker
response = vpnfeedbacker(user_input)
Or with a custom LLModel instance (based on langchain):
from langchain_openai import ChatOpenAI
from vpnfeedbacker import vpnfeedbacker
llm = ChatOpenAI()
response = vpnfeedbacker(user_input, llm=llm)
Parameters
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, it defaults toNoneor the value of theLLM7_API_KEYenvironment variable.
Defaults
By default, the package uses the ChatLLM7 instance from langchain_llm7.
Custom LLMs
You can use other LLMs from langchain by passing your own LLm instance, e.g. OpenAI, Anthropic, Google Generative AI:
from langchain_openai import ChatOpenAI
from vpnfeedbacker import vpnfeedbacker
llm = ChatOpenAI()
response = vpnfeedbacker(user_input, llm=llm)
or
from langchain_anthropic import ChatAnthropic
from vpnfeedbacker import vpnfeedbacker
llm = ChatAnthropic()
response = vpnfeedbacker(user_input, llm=llm)
or
from langchain_google_genai import ChatGoogleGenerativeAI
from vpnfeedbacker import vpnfeedbacker
llm = ChatGoogleGenerativeAI()
response = vpnfeedbacker(user_input, llm=llm)
LLM7 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 pass your own API key via environment variable LLM7_API_KEY or directly like vpnfeedbacker(user_input, api_key="your_api_key"). Get a free API key at https://token.llm7.io/.
Contributing
Open issues and pull requests are welcome at https://github.com/chigwell/vpnfeedbacker.
Author
Eugene Evstafev hi@eugene.plus
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 vpnfeedbacker-2025.12.21102332.tar.gz.
File metadata
- Download URL: vpnfeedbacker-2025.12.21102332.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 |
590e5038c1f556a1ad1fdbc843266e46d1a03dc22351122cdfd3fea93e7b33d7
|
|
| MD5 |
d09d6a447f456924dae5984a03fd1454
|
|
| BLAKE2b-256 |
2a893e9fd753e71e1c885db262a5e670a0fd826a44b9569c74286077f83998ec
|
File details
Details for the file vpnfeedbacker-2025.12.21102332-py3-none-any.whl.
File metadata
- Download URL: vpnfeedbacker-2025.12.21102332-py3-none-any.whl
- Upload date:
- Size: 4.9 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 |
51738208fb3971e5d4a498346b05337dfa92777028148b8a3f53908db0a59134
|
|
| MD5 |
b13053d49933c71e2118d018ae76560e
|
|
| BLAKE2b-256 |
05abccf95e798ebc2268aba15a6d206097450ee936225745545747fdb8601be4
|