SIENTIAPDE-1222

Update image tag in values.yaml and enhance debug logging in Gates and MLFlow activities

- Updated the image tag in values.yaml from '0.0.1' to '0.0.2'.
- Improved debug logging in the Gates activity to format input data and filters for better readability.
- Enhanced MLFlow activity logging to include formatted output for raw and transformed response data, ensuring consistent logging format.
This commit is contained in:
vitor-aignosi
2025-09-16 10:22:51 -03:00
parent 31e7e94a95
commit 0bdbef00b7
4 changed files with 19 additions and 14 deletions

View File

@@ -27,8 +27,16 @@ ARTIFACTS_PATH = "./tmp/artifacts"
class MLFlowRepository():
def __init__(self, host: str, username: str, password: str, logger: Logger):
<< << << < HEAD
# set tracking uri
mlflow.set_tracking_uri(host)
== == == =
self.model_serving = ModelServing(tracking_uri=host,
username=username, password=password,
logger=logger)
self.logger = logger
>>>>>> > eefd081(SIENTIAPDE-1222)
environ["MLFLOW_TRACKING_USERNAME"] = username
environ["MLFLOW_TRACKING_PASSWORD"] = password