Metadata-Version: 2.4
Name: browseai
Version: 0.2.0
Summary: Research infrastructure for AI agents. This package now installs browseaidev — the updated package name for BrowseAI Dev.
License-Expression: MIT
Project-URL: Homepage, https://browseai.dev
Project-URL: Repository, https://github.com/BrowseAI-HQ/BrowseAI-Dev
Project-URL: Documentation, https://browseai.dev/developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: browseaidev>=0.1.7

# browseai → browseaidev

**This package has been renamed to [`browseaidev`](https://pypi.org/project/browseaidev/).**

Installing `browseai` will automatically install `browseaidev` and re-export everything.

## Migration

```bash
# Old (still works)
pip install browseai

# New (recommended)
pip install browseaidev
```

```python
# Old imports (still work via this shim)
from browseai import BrowseAI, AsyncBrowseAI

# New imports (recommended)
from browseaidev import BrowseAIDev, AsyncBrowseAIDev
```

All future development happens in the [`browseaidev`](https://github.com/BrowseAI-HQ/BrowseAI-Dev) package.
