Metadata-Version: 2.1
Name: kozmoserver-catboost
Version: 0.1.0.dev1
Summary: Catboost runtime for KozmoServer
License: Apache-2.0
Author: KozmoAI
Author-email: developers@kozmoai.io
Maintainer: KozmoAI Ltd.
Maintainer-email: hello@kozmoai.io
Requires-Python: >=3.9,<3.12
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: catboost
Requires-Dist: joblib
Requires-Dist: kozmoserver
Description-Content-Type: text/markdown

# CatBoost runtime for KozmoServer

This package provides a KozmoServer runtime compatible with CatBoost's `CatboostClassifier`.

## Usage

You can install the runtime, alongside `kozmoserver`, as:

```bash
pip install kozmoserver kozmoserver-catboost
```

For further information on how to use KozmoServer with CatBoost, you can check out
this [worked out example](../../docs/examples/catboost/README.md).

## Content Types

If no [content type](../../docs/user-guide/content-type) is present on the
request or metadata, the CatBoost runtime will try to decode the payload as
a [NumPy Array](../../docs/user-guide/content-type).
To avoid this, either send a different content type explicitly, or define the
correct one as part of your [model's
metadata](../../docs/reference/model-settings).

