Metadata-Version: 2.4
Name: mightydatainc-mdi-llmkit
Version: 1.0.8
Summary: Meta-package that installs the core Mighty Data LLM utility packages
Project-URL: Homepage, https://github.com/Mighty-Data-Inc/mdi-llmkit
Project-URL: Documentation, https://github.com/Mighty-Data-Inc/mdi-llmkit#readme
Project-URL: Repository, https://github.com/Mighty-Data-Inc/mdi-llmkit
Author: Mikhail Voloshin
License: Copyright (c) 2026 Mighty Data Inc.
License-File: LICENSE
Requires-Python: >=3.13
Requires-Dist: mightydatainc-json-surgery>=1.2.1
Requires-Dist: mightydatainc-llm-conversation>=1.0.5
Requires-Dist: mightydatainc-semantic-match>=1.3.0
Description-Content-Type: text/markdown

# mightydatainc-mdi-llmkit

Python meta-package for the Mighty Data LLM toolkit.

## Full Project Documentation

For the complete project overview and rationale, see the repository README:

- https://github.com/Mighty-Data-Inc/mdi-llmkit#readme

This package is a convenience installer. It does not provide its own runtime API surface. Instead, it installs the core component packages used in Python projects.

## Installation

```bash
pip install mightydatainc-mdi-llmkit
```

## Installed Component Packages

Installing this meta-package pulls in:

- `mightydatainc-llm-conversation`
- `mightydatainc-json-surgery`
- `mightydatainc-semantic-match`

## Usage

Import functionality from the component packages directly:

```python
from mightydatainc_llm_conversation import LLMConversation
from mightydatainc_json_surgery import json_surgery
from mightydatainc_semantic_match import find_semantic_match
```

Refer to each component repository/package documentation for API details and examples.

## Notes

- PyPI distribution name: `mightydatainc-mdi-llmkit`
- Local Python package namespace in this repository: `mdi_llmkit` (intentionally minimal for meta-package behavior)
