Metadata-Version: 2.4
Name: novyx-core
Version: 1.0.1
Summary: DEPRECATED — use 'novyx' instead. This package now redirects to the official Novyx SDK.
Author-email: Novyx Labs <hello@novyx.ai>
License: MIT
Project-URL: Homepage, https://novyxlabs.com
Project-URL: Repository, https://github.com/novyxlabs/novyx-core
Project-URL: New Package, https://pypi.org/project/novyx/
Keywords: novyx,deprecated
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: novyx>=2.9.2

# novyx-core (DEPRECATED)

> **This package has been replaced by [`novyx`](https://pypi.org/project/novyx/).**

```bash
pip install novyx
```

The `novyx` package is the official Novyx SDK with 70+ methods for persistent memory, rollback, audit trails, and more.

This `novyx-core` package now exists only as a redirect — installing it will automatically install `novyx`.

## Migration

Replace any imports:

```python
# Old (novyx-core)
from novyx_core import ...

# New (novyx)
from novyx import Novyx

nx = Novyx()
nx.remember("Your agent remembers now")
```

See the [full documentation](https://novyxlabs.com) for details.
