A new package is designed to analyze user inputs related to avoiding negative or unwelcome appearances on a Louis Rossmann video. It processes the text input to identify key factors or common pitfalls
Project description
rossmann-appearance-analyzer
A Python package for analyzing user inputs to avoid negative or unwelcome appearances on a Louis Rossmann video. The package processes text input to identify key factors or common pitfalls and provides structured recommendations to prevent such outcomes.
Installation
You can install the package via pip:
pip install rossmann_appearance_analyzer
Usage
Here's a basic example of how to use the package:
from rossmann_appearance_analyzer import rossmann_appearance_analyzer
user_input = "Your text input here..."
results = rossmann_appearance_analyzer(user_input=user_input)
print(results)
Using a Different LLM
By default, the package uses ChatLLM7 from langchain_llm7 (see PyPI). However, you can pass your own LangChain-compatible LLM instance. For example, to use OpenAI:
from langchain_openai import ChatOpenAI
from rossmann_appearance_analyzer import rossmann_appearance_analyzer
llm = ChatOpenAI()
response = rossmann_appearance_analyzer(user_input="Your input", llm=llm)
To use Anthropic:
from langchain_anthropic import ChatAnthropic
from rossmann_appearance_analyzer import rossmann_appearance_analyzer
llm = ChatAnthropic()
response = rossmann_appearance_analyzer(user_input="Your input", llm=llm)
To use Google Generative AI:
from langchain_google_genai import ChatGoogleGenerativeAI
from rossmann_appearance_analyzer import rossmann_appearance_analyzer
llm = ChatGoogleGenerativeAI()
response = rossmann_appearance_analyzer(user_input="Your input", llm=llm)
Providing an API Key
If you want to use the default ChatLLM7 with your own API key (for higher rate limits), you can set it via environment variable or pass it directly:
from rossmann_appearance_analyzer import rossmann_appearance_analyzer
# Via environment variable (set LLM7_API_KEY)
# Or directly:
response = rossmann_appearance_analyzer(user_input="Your input", api_key="your_api_key_here")
You can get a free API key by registering at https://token.llm7.io/.
Parameters
user_input(str): The text input to process.llm(Optional[BaseChatModel]): A LangChain LLM instance. If not provided, defaults toChatLLM7.api_key(Optional[str]): API key forChatLLM7. If not provided, the package will try to use theLLM7_API_KEYenvironment variable.
Contributing
If you encounter any issues or have suggestions, please open an issue on GitHub.
Author
- Eugene Evstafev - hi@euegne.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 rossmann_appearance_analyzer-2025.12.21113604.tar.gz.
File metadata
- Download URL: rossmann_appearance_analyzer-2025.12.21113604.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86dfdf82ec80508cdb63ab903f394cb40a7acd4996f03e1651b5f454ce9c9153
|
|
| MD5 |
0d3a6fe42074a6545bf8a9aa842c2ac4
|
|
| BLAKE2b-256 |
b8db93c50aee79ee952d39fae785f322aed23aef743382af1ff0c9d32def01e0
|
File details
Details for the file rossmann_appearance_analyzer-2025.12.21113604-py3-none-any.whl.
File metadata
- Download URL: rossmann_appearance_analyzer-2025.12.21113604-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 |
e12c13c70ddfc6611f69f25f648d6bcc39079fa7c0b40b265c782555d22686c5
|
|
| MD5 |
0e5f1f7c5c877f442c0741ffc015d726
|
|
| BLAKE2b-256 |
d64e8ca00e9f6dc03d3203e13e7faafbc26f50be9f23c6536923e9e90d1e9684
|