Metadata-Version: 2.1
Name: cogflow
Version: 1.9.2
Summary: cog modules
Home-page: UNKNOWN
Author: Sai_kireeti
Author-email: sai.kireeti@hiro-microdatacenters.nl
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: mlflow ==2.10.2
Requires-Dist: kfp ==1.8.22
Requires-Dist: boto3 ==1.34.73
Requires-Dist: tenacity ==8.2.3
Requires-Dist: pandas ==2.0.3
Requires-Dist: numpy ==1.24.3
Requires-Dist: kubernetes ==25.3.0
Requires-Dist: minio ==7.2.5
Requires-Dist: scikit-learn ==1.3.2
Requires-Dist: awscli ==1.32.73
Requires-Dist: s3fs ==0.4.2
Requires-Dist: setuptools
Requires-Dist: kserve ==0.12.0
Requires-Dist: tensorflow
Requires-Dist: ray ==2.9.3


# CogFlow

CogFlow is a versatile framework designed to manage multiple plugins for cognitive and machine learning tasks. It includes several plugins such as `MlflowPlugin`, `KubeflowPlugin`, and `DatasetPlugin`, which can be activated as needed to extend the capabilities of the framework.

## Getting Started

To begin, import cogflow from the CogFlow module:

```python
import cogflow

```

### Explore the Capabilities of `cogflow`

- **List Attributes and Methods**: Understand the `cogflow` module better with:
    ```python
    print(dir(cogflow))
    ```

- **Get Documentation**: For a comprehensive guide on the `cogflow`, use:
    ```python
    help(cogflow)
    ```

## Environment Variables

To maximize the functionality of CogFlow, set the following environment variables:

- **Mlflow Configuration**:
    - `MLFLOW_TRACKING_URI`: The URI of the Mlflow tracking server.
    - `MLFLOW_S3_ENDPOINT_URL`: The endpoint URL for the AWS S3 service.
    - `ACCESS_KEY_ID`: The access key ID for AWS S3 authentication.
    - `SECRET_ACCESS_KEY`: The secret access key for AWS S3 authentication.

- **Machine Learning Database**:
    - `ML_DB_USERNAME`: Username for connecting to the machine learning database.
    - `ML_DB_PASSWORD`: Password for connecting to the machine learning database.
    - `ML_DB_HOST`: Host address for the machine learning database.
    - `ML_DB_PORT`: Port number for the machine learning database.
    - `ML_DB_NAME`: Name of the machine learning database.

- **CogFlow Database**:
    - `COGFLOW_DB_USERNAME`: Username for connecting to the CogFlow database.
    - `COGFLOW_DB_PASSWORD`: Password for connecting to the CogFlow database.
    - `COGFLOW_DB_HOST`: Host address for the CogFlow database.
    - `COGFLOW_DB_PORT`: Port number for the CogFlow database.
    - `COGFLOW_DB_NAME`: Name of the CogFlow database.

- **MinIO Configuration**:
    - `MINIO_ENDPOINT_URL`: The endpoint URL for the MinIO service.
    - `MINIO_ACCESS_KEY`: The access key for MinIO authentication.
    - `MINIO_SECRET_ACCESS_KEY`: The secret access key for MinIO authentication.

---

By setting the environment variables correctly, you can fully utilize the features and functionalities of the CogFlow framework for your cognitive and machine learning tasks.

