Skip to content

A new package that helps users determine the noise level of their environment by analyzing text descriptions. Users input a brief text describing their surroundings, and the package processes this inp

Notifications You must be signed in to change notification settings

chigwell/textnoise-analyzer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

TextNoise Analyzer

PyPI version License: MIT Downloads LinkedIn

TextNoise Analyzer is a Python package that helps users determine the noise level of their environment by analyzing text descriptions. Users input a brief text describing their surroundings, and the package processes this input to classify the noise level as low, moderate, or high. The structured output provides a clear assessment of the noise level, enabling applications like smart home systems, workplace environment monitoring, or personal safety tools to respond based on user-provided descriptions.

Features

  • Analyze text descriptions to classify noise levels.
  • Supports custom language models (LLMs) from LangChain.
  • Defaults to using ChatLLM7 from LangChain LLM7.
  • Easy integration with popular LLMs like OpenAI, Anthropic, and Google Generative AI.

Installation

You can install the package using pip:

pip install textnoise_analyzer

Usage

Basic Example

from textnoise_analyzer import textnoise_analyzer

user_input = "I can hear the sound of traffic and people talking."
response = textnoise_analyzer(user_input)
print(response)

Using a Custom LLM

You can use a custom LLM from LangChain by passing it to the textnoise_analyzer function.

Using OpenAI

from langchain_openai import ChatOpenAI
from textnoise_analyzer import textnoise_analyzer

llm = ChatOpenAI()
user_input = "I can hear the sound of traffic and people talking."
response = textnoise_analyzer(user_input, llm=llm)
print(response)

Using Anthropic

from langchain_anthropic import ChatAnthropic
from textnoise_analyzer import textnoise_analyzer

llm = ChatAnthropic()
user_input = "I can hear the sound of traffic and people talking."
response = textnoise_analyzer(user_input, llm=llm)
print(response)

Using Google Generative AI

from langchain_google_genai import ChatGoogleGenerativeAI
from textnoise_analyzer import textnoise_analyzer

llm = ChatGoogleGenerativeAI()
user_input = "I can hear the sound of traffic and people talking."
response = textnoise_analyzer(user_input, llm=llm)
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 ChatLLM7 will be used.
  • api_key (Optional[str]): The API key for LLM7. If not provided, the environment variable LLM7_API_KEY will 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 pass your own API key via the api_key parameter or set the environment variable LLM7_API_KEY.

You can get a free API key by registering at LLM7 Token.

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License.

Author