Skip to main content

A new package that processes text input describing volunteer activities in conflict zones, such as reports of volunteers physically intervening between Israeli settlers and Palestinian villages. It us

Project description

Conflict Zone Extractor

PyPI version License: MIT Downloads LinkedIn

A Python package that processes text input describing volunteer activities in conflict zones, such as reports of volunteers physically intervening between Israeli settlers and Palestinian villages. It uses an LLM to extract structured information like the location, number of volunteers, actions taken, and outcomes, ensuring the output is consistently formatted and validated through pattern matching for reliability in humanitarian or journalistic contexts.

Installation

pip install conflict_zone_extractor

Usage

from conflict_zone_extractor import conflict_zone_extractor

response = conflict_zone_extractor(
    user_input="Volunteers intervened in the West Bank today, with 15 people present.",
    api_key="your_api_key"  # Optional, if not provided, the package will use the default LLM7
)
print(response)

Using a Custom LLM

You can use any LLM compatible with LangChain. Here are examples with different LLMs:

OpenAI

from langchain_openai import ChatOpenAI
from conflict_zone_extractor import conflict_zone_extractor

llm = ChatOpenAI()
response = conflict_zone_extractor(
    user_input="Volunteers intervened in the West Bank today, with 15 people present.",
    llm=llm
)
print(response)

Anthropic

from langchain_anthropic import ChatAnthropic
from conflict_zone_extractor import conflict_zone_extractor

llm = ChatAnthropic()
response = conflict_zone_extractor(
    user_input="Volunteers intervened in the West Bank today, with 15 people present.",
    llm=llm
)
print(response)

Google

from langchain_google_genai import ChatGoogleGenerativeAI
from conflict_zone_extractor import conflict_zone_extractor

llm = ChatGoogleGenerativeAI()
response = conflict_zone_extractor(
    user_input="Volunteers intervened in the West Bank today, with 15 people present.",
    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 package will use the default LLM7 or the API key from the environment variable LLM7_API_KEY.

Default LLM

By default, the package uses ChatLLM7 from langchain_llm7. You can safely pass your own LLM instance if you want to use another LLM.

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 for LLM7, you can pass your own API key via the environment variable LLM7_API_KEY or directly via the api_key parameter. 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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

conflict_zone_extractor-2025.12.21180055.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file conflict_zone_extractor-2025.12.21180055.tar.gz.

File metadata

File hashes

Hashes for conflict_zone_extractor-2025.12.21180055.tar.gz
Algorithm Hash digest
SHA256 e04fcaf01aa3a5a1f59bb7370cbb0e7192e1390e1219e7b641b9922b94465a30
MD5 8fcdc820fb524e905720db292703edac
BLAKE2b-256 a2324ea6c9c761249c315deb77407218178b1d3a905f9cb08762b1041a84a43f

See more details on using hashes here.

File details

Details for the file conflict_zone_extractor-2025.12.21180055-py3-none-any.whl.

File metadata

File hashes

Hashes for conflict_zone_extractor-2025.12.21180055-py3-none-any.whl
Algorithm Hash digest
SHA256 9ba106ff5e4542ec44f95a30d2be135a2cbfb1f4ecf01dd86bb1519c7025acaf
MD5 6c7a44f69e52796d9ab58e797b21a322
BLAKE2b-256 57860cd17c3d2595188febaf7ffdd5218d149d6cfb5ce0cb3ce1b0e035ca12eb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page