Metadata-Version: 2.4
Name: developing-agentic-ai
Version: 0.1.1
Summary: A Python package for developing agentic AI systems
Author-email: Your Name <doug.blank@gmail.com>
Maintainer-email: Your Name <doug.blank@gmail.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/dsblank/developing-agentic-ai
Project-URL: Documentation, https://github.com/dsblank/developing-agentic-ai#readme
Project-URL: Repository, https://github.com/dsblank/developing-agentic-ai
Project-URL: Issues, https://github.com/dsblank/developing-agentic-ai/issues
Keywords: ai,agent,ai,opik,llm
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: opik
Requires-Dist: opik
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Dynamic: license-file

# developing-agentic-ai

A Python package for developing agentic AI systems.

## Installation

Install the package using pip:

```bash
pip install developing-agentic-ai
```

Or install from source:

```bash
git clone https://github.com/dsblank/developing-agentic-ai.git
cd developing-agentic-ai
pip install -e .
```

## Requirements

- Python 3.8 or higher
- opik

## Development

To set up a development environment:

```bash
git clone https://github.com/dsblank/developing-agentic-ai.git
cd developing-agentic-ai
pip install -e ".[dev]"
```

Run tests:

```bash
pytest
```

## License

This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## Links

- [GitHub Repository](https://github.com/dsblank/developing-agentic-ai)
- [Issue Tracker](https://github.com/dsblank/developing-agentic-ai/issues)
