Files
2026-07-13 13:22:34 +08:00

12 lines
286 B
Python

from mlflow.tracking.context.abstract_context import RunContextProvider
class PluginRunContextProvider(RunContextProvider):
"""RunContextProvider provided through plugin system"""
def in_context(self):
return False
def tags(self):
return {"test": "tag"}