Closed bcdurak closed 1 week ago
[!IMPORTANT]
Review skipped
Auto reviews are disabled on this repository.
Please check the settings in the CodeRabbit UI or the
.coderabbit.yaml
file in this repository. To trigger a single review, invoke the@coderabbitai review
command.You can disable this status message by setting the
reviews.review_status
tofalse
in the CodeRabbit configuration file.
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
If these secrets were true positive and are still valid, we highly recommend you to revoke them. Once a secret has been leaked into a git repository, you should consider it compromised, even if it was deleted immediately. Find here more information about risks.
🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request.
Describe changes
This PR features three main changes:
The new
log_metadata
functionNow, all the metadata-creating functions are gathered under one method called
log_metadata
. It is possible to call this method with different inputs to log run metadata for artifact versions, model versions, steps, and runs.The
oneof
filteringThis allows us to filter entities using a new operator called
oneof
. You can possibly use this with IDs, tags, and all the other attributes likePipelineRunFilter(tag='oneof:["cats", "dogs"]')
.The
run_metadata
filteringThe custom filtering logic for runs, steps, artifact-, and model versions has been improved. Now, you can filter these entities using filters like
PipelineRunFilter(run_metadata={"accuracy": "gt:0.85"})
.Further changes
The remaining TODOs
Pre-requisites
Please ensure you have done the following:
develop
and the open PR is targetingdevelop
. If your branch wasn't based on develop read Contribution guide on rebasing branch to develop.Types of changes