Metadata-Version: 2.3
Name: miiflow-llm
Version: 0.5.2
Summary: DEPRECATED: This package has been renamed to miiflow-agent. Please install miiflow-agent instead: pip install miiflow-agent
License: MIT
Keywords: deprecated,miiflow-agent
Author: Yaozhong Kang
Author-email: yaozhong@miiflow.ai
Requires-Python: >=3.9,<3.13
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: miiflow-agent (>=1.0.0)
Project-URL: Homepage, https://github.com/Miiflow/miiflow-agent
Project-URL: Repository, https://github.com/Miiflow/miiflow-agent
Description-Content-Type: text/markdown

# miiflow-llm (DEPRECATED)

> **This package has been renamed to [`miiflow-agent`](https://pypi.org/project/miiflow-agent/).**

## Migration

Update your dependencies:

```bash
# Remove old package
pip uninstall miiflow-llm

# Install new package
pip install miiflow-agent
```

Update your imports:

```python
# Old
from miiflow_llm import Agent, LLMClient

# New
from miiflow_agent import Agent, LLMClient
```

## Why the rename?

The package has evolved from a simple LLM client to a full agent orchestration framework with:
- ReAct agents
- Plan & Execute orchestration
- Multi-Agent orchestration
- Tool system with auto schema generation

The name `miiflow-agent` better reflects its current capabilities.

## Links

- **New Package**: https://pypi.org/project/miiflow-agent/
- **GitHub**: https://github.com/Miiflow/miiflow-agent
- **Documentation**: https://github.com/Miiflow/miiflow-agent#readme

