econ-legalizer is a package that extracts structured summaries and insights from text input on regional economic and legal issues.
Project description
Econ-Legalizer
Econ-Legalizer is a Python package designed to facilitate the extraction of structured summaries and key insights from user-provided text inputs related to regional economic and legal issues, such as property rights in specific locations. It leverages advanced pattern matching and retry mechanisms to ensure accurate, consistent, and reliable information retrieval.
Features
- Extract structured summaries from text inputs
- Focus on regional economic and legal issues
- Advanced pattern matching for accurate information retrieval
- Retry mechanisms for consistent results
- Support for custom LLM instances
Installation
pip install econ_legalizer
Usage
Basic Usage
from econ_legalizer import econ_legalizer
response = econ_legalizer("Your text input here")
print(response)
Using a Custom LLM
Econ-Legalizer uses ChatLLM7 from langchain_llm7 by default. However, you can safely pass your own LLM instance if you want to use another LLM.
Using OpenAI
from langchain_openai import ChatOpenAI
from econ_legalizer import econ_legalizer
llm = ChatOpenAI()
response = econ_legalizer("Your text input here", llm=llm)
print(response)
Using Anthropic
from langchain_anthropic import ChatAnthropic
from econ_legalizer import econ_legalizer
llm = ChatAnthropic()
response = econ_legalizer("Your text input here", llm=llm)
print(response)
Using Google
from langchain_google_genai import ChatGoogleGenerativeAI
from econ_legalizer import econ_legalizer
llm = ChatGoogleGenerativeAI()
response = econ_legalizer("Your text input here", llm=llm)
print(response)
Using an API Key
If you want to use a specific API key for LLM7, you can pass it directly or set it as an environment variable.
from econ_legalizer import econ_legalizer
# Passing the API key directly
response = econ_legalizer("Your text input here", api_key="your_api_key")
print(response)
# Setting the API key as an environment variable
import os
os.environ["LLM7_API_KEY"] = "your_api_key"
response = econ_legalizer("Your text input here")
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 defaultChatLLM7will be used.api_key(Optional[str]): The API key for LLM7. If not provided, the environment variableLLM7_API_KEYwill be used.
Rate Limits
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 in the function call.
Getting an API Key
You can get a free API key by registering at LLM7.
Issues
If you encounter any issues, please report them on the GitHub issues page.
Author
- Eugene Evstafev
- Email: hi@eugene.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 econ_legalizer-2025.12.21195956.tar.gz.
File metadata
- Download URL: econ_legalizer-2025.12.21195956.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fee42d085272b99b9545b264ee06b382cdaacf3f735f4a9c872fbf1e3afaf208
|
|
| MD5 |
5c9cc919c838ad1f79f7340b1f3d52ac
|
|
| BLAKE2b-256 |
10cc1a9f93e5572e802f4022ed0ad6689e0fb98fd447f00b22b6083e04f08ab8
|
File details
Details for the file econ_legalizer-2025.12.21195956-py3-none-any.whl.
File metadata
- Download URL: econ_legalizer-2025.12.21195956-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6456127b9d33f12f888c26fe89c480e1a75ec209425d18919205fcaa7e1426f6
|
|
| MD5 |
0ea0de485c5a3c3a648c61e58716d89f
|
|
| BLAKE2b-256 |
fa77548cf491b5f56a3fe1aff996989af6d6df509b9e5ea799a94d6dff7c463b
|