A new package designed to analyze user-provided text about ancient Greek terms and generate a structured summary highlighting terms that should be revitalized in modern language. It leverages pattern
Project description
GreekLexiconRejuvenator
GreekLexiconRejuvenator is a Python package designed to analyze user-provided text about ancient Greek terms and generate a structured summary highlighting terms that should be revitalized in modern language. It leverages pattern matching to identify key terms, their definitions, and relevance, ensuring clear and consistent output.
Features
- Text Analysis: Processes input text to identify ancient Greek terms.
- Pattern Matching: Uses regex patterns to extract and format relevant terms.
- Flexible LLM Integration: Supports custom language models from LangChain or defaults to ChatLLM7.
- Robust Error Handling: Includes retry mechanisms and diagnostic messages for robustness.
Installation
You can install the package using pip:
pip install greeklexiconrejuvenator
Usage
Here's a basic example of how to use the greeklexiconrejuvenator package:
from greeklexiconrejuvenator import greeklexiconrejuvenator
# Example usage with default LLM
response = greeklexiconrejuvenator(user_input="Your text about ancient Greek terms here.")
print(response)
Custom LLM Integration
You can also use your own language model from LangChain. Here are examples with different LLMs:
Using OpenAI
from langchain_openai import ChatOpenAI
from greeklexiconrejuvenator import greeklexiconrejuvenator
llm = ChatOpenAI()
response = greeklexiconrejuvenator(user_input="Your text about ancient Greek terms here.", llm=llm)
print(response)
Using Anthropic
from langchain_anthropic import ChatAnthropic
from greeklexiconrejuvenator import greeklexiconrejuvenator
llm = ChatAnthropic()
response = greeklexiconrejuvenator(user_input="Your text about ancient Greek terms here.", llm=llm)
print(response)
Using Google Generative AI
from langchain_google_genai import ChatGoogleGenerativeAI
from greeklexiconrejuvenator import greeklexiconrejuvenator
llm = ChatGoogleGenerativeAI()
response = greeklexiconrejuvenator(user_input="Your text about ancient Greek terms here.", llm=llm)
print(response)
API Key
The default rate limits for LLM7 free tier are sufficient for most use cases. 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.
response = greeklexiconrejuvenator(user_input="Your text about ancient Greek terms here.", api_key="your_api_key")
You can get a free API key by registering at LLM7 Token.
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 variableLLM7_API_KEYwill be used.
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
- Eugene Evstafev
- Email: 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 greeklexiconrejuvenator-2025.12.21151932.tar.gz.
File metadata
- Download URL: greeklexiconrejuvenator-2025.12.21151932.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1940d6b09a815e2a336a015fe1f22e6999a7aaf94bd522cf80a6e416d445693c
|
|
| MD5 |
859b7e2d034b17cc3fa58c94cafec621
|
|
| BLAKE2b-256 |
df37de352aeddcbe4c858713e44ed3fbb33cb6d75abe21720275c9830b30c540
|
File details
Details for the file greeklexiconrejuvenator-2025.12.21151932-py3-none-any.whl.
File metadata
- Download URL: greeklexiconrejuvenator-2025.12.21151932-py3-none-any.whl
- Upload date:
- Size: 5.2 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 |
38239f7efd908ea7e4f7d31c72955de3ddf239cf0a1762dfe33eec0facae3343
|
|
| MD5 |
5b62e4df9d1f08f490a0a27d1e6ec233
|
|
| BLAKE2b-256 |
1342874ac8f5e90b667c543a0b898518b9b65cbfff0f121bc33b240e37697772
|