A new package designed to analyze user-submitted texts related to financial well-being by employing language models and pattern matching. The package processes the input to identify key sentiments, th
Project description
Finwell Analyzer
A package designed to analyze user-submitted texts related to financial well-being by employing language models and pattern matching.
Overview
The package processes the input to identify key sentiments, themes, and insights about young adults' perceptions of affordability and financial status. It returns structured data such as summarized opinions, emotional tone, or categorized reasons behind perceptions, helping organizations understand public sentiment on economic issues without handling raw documents or multimedia.
Installation
pip install finwell_analyzer
Usage
from finwell_analyzer import finwell_analyzer
user_input = "I'm struggling to balance my expenses and savings."
response = finwell_analyzer(user_input)
print(response) # Output: A dictionary with summarized opinions, emotional tone, and categorized reasons behind perceptions.
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 default rate limits for LLM7 free tier will be used.
Using Custom LLMs
You can safely pass your own LLM instance (based on LangChain LLMs if you want to use another LLM, via passing it like finwell_analyzer(..., llm=their_llm_instance).
Example with OpenAI
from langchain_openai import ChatOpenAI
from finwell_analyzer import finwell_analyzer
llm = ChatOpenAI()
response = finwell_analyzer("I'm struggling to balance my expenses and savings.", llm=llm)
Example with Anthropic
from langchain_anthropic import ChatAnthropic
from finwell_analyzer import finwell_analyzer
llm = ChatAnthropic()
response = finwell_analyzer("I'm struggling to balance my expenses and savings.", llm=llm)
Example with Google Generative AI
from langchain_google_genai import ChatGoogleGenerativeAI
from finwell_analyzer import finwell_analyzer
llm = ChatGoogleGenerativeAI()
response = finwell_analyzer("I'm struggling to balance my expenses and savings.", llm=llm)
API Key
The default rate limits for LLM7 free tier are sufficient for most use cases of this package. If you need higher rate limits for LLM7, you can pass your own API key via environment variable LLM7_API_KEY or via passing it directly like finwell_analyzer(..., api_key="their_api_key"). You can get a free API key by registering at LLM7 Token.
Issues
Have any questions or issues? Please feel free to open a GitHub issue at GitHub Issues.
Author
Eugene Evstafev hi@eugene.plus
Acknowledgments
This package uses the LangChain LLMs module, specifically the ChatLLM7 class from langchain_llm7.
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 finwell_analyzer-2025.12.21103304.tar.gz.
File metadata
- Download URL: finwell_analyzer-2025.12.21103304.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85c5cb0bd7c90eca6102bb89617de613b88a70bb5564890d951f3123c8806d39
|
|
| MD5 |
509b32137d8aa88609bb8d23269b166d
|
|
| BLAKE2b-256 |
e69a50ae4d10afa17f2f3ac36ed98eae1b960178eda0a054986b65ed33e6b36f
|
File details
Details for the file finwell_analyzer-2025.12.21103304-py3-none-any.whl.
File metadata
- Download URL: finwell_analyzer-2025.12.21103304-py3-none-any.whl
- Upload date:
- Size: 5.5 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 |
77069a4974cdb0ec3b365cf25523931843532ad493a62d232d30fb9fd196bc0a
|
|
| MD5 |
ffdc9a98b92964531de7f3726d9550ae
|
|
| BLAKE2b-256 |
152ce5522385fddedb9a8e652e0ce1ab4df76bf6e0ee53bcda858ab3b36409e2
|