Accessiqlue is a Python package designed to take user input about accessibility challenges and generate structured summaries or actionable recommendations. It leverages advanced pattern matching with language model interactions to extract key points, identify accessibility needs, and produce clear, organized responses. This helps organizations better understand accessibility issues from user reports or feedback, enabling targeted improvements without processing raw multimedia data.
pip install accessiqluefrom accessiqlue import accessiqlue
user_input = "The website is not accessible because the contrast is too low."
response = accessiqlue(user_input)
print(response)You can use your own LLM instance by passing it to the accessiqlue function. Here are examples using different LLMs:
from langchain_openai import ChatOpenAI
from accessiqlue import accessiqlue
llm = ChatOpenAI()
response = accessiqlue(user_input, llm=llm)
print(response)from langchain_anthropic import ChatAnthropic
from accessiqlue import accessiqlue
llm = ChatAnthropic()
response = accessiqlue(user_input, llm=llm)
print(response)from langchain_google_genai import ChatGoogleGenerativeAI
from accessiqlue import accessiqlue
llm = ChatGoogleGenerativeAI()
response = accessiqlue(user_input, llm=llm)
print(response)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 environment variableLLM7_API_KEYwill be used.
By default, Accessiqlue uses ChatLLM7 from langchain_llm7. You can get a free API key by registering at LLM7.
The default rate limits for LLM7 free tier are sufficient for most use cases of this package. If you want higher rate limits, you can pass your own API key via the environment variable LLM7_API_KEY or directly to the accessiqlue function.
If you encounter any issues, please report them on the GitHub issues page.
- Eugene Evstafev
- Email: hi@eugene.plus
- GitHub: chigwell