Metadata-Version: 2.4
Name: rusticai-marvin
Version: 1.2.0
Summary: Rustic AI module using Marvin
License-Expression: Apache-2.0
Author: Dragonscale Industries Inc.
Author-email: dev@dragonscale.ai
Requires-Python: >=3.13,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: test
Requires-Dist: marvin (>=3.1.3,<4.0.0)
Requires-Dist: rusticai-core (>=1.2.0,<1.3.0)
Project-URL: Homepage, https://www.rustic.ai/
Project-URL: Repository, https://github.com/rustic-ai/rustic-ai
Project-URL: Rustic AI Core, https://pypi.org/project/rusticai-core/
Description-Content-Type: text/markdown

# Rustic AI Marvin

[Rustic AI](https://www.rustic.ai/) module which provides text classification and extraction agent using [Marvin](https://www.askmarvin.ai/welcome/what_is_marvin/).

## Installing

```shell
pip install rusticai-marvin
```
**Note:** It depends on [rusticai-core](https://pypi.org/project/rusticai-core/)

Marvin by default uses OpenAI, but it can be configured to use other providers. For example, to use Gemini, 
```shell
export MARVIN_AGENT_MODEL=google-vertex:gemini-2.0-flash
```

Refer [Marvin Docs](https://askmarvin.ai/guides/configure-llms) for more on this.

## Building from Source

```shell
poetry install --with dev
poetry build
```

