Skip to content

Commit

Permalink
Change tags(str) to tags(dict) in mlflow_callback.py docs (#6473)
Browse files Browse the repository at this point in the history
Fixes #6472

#### Who can review?

@agola11
  • Loading branch information
ArchimedesFTW committed Jun 26, 2023
1 parent 9187d2f commit fe941cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions langchain/callbacks/mlflow_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class MlflowLogger:
Parameters:
name (str): Name of the run.
experiment (str): Name of the experiment.
tags (str): Tags to be attached for the run.
tags (dict): Tags to be attached for the run.
tracking_uri (str): MLflow tracking server uri.
This handler implements the helper functions to initialize,
Expand Down Expand Up @@ -223,7 +223,7 @@ class MlflowCallbackHandler(BaseMetadataCallbackHandler, BaseCallbackHandler):
Parameters:
name (str): Name of the run.
experiment (str): Name of the experiment.
tags (str): Tags to be attached for the run.
tags (dict): Tags to be attached for the run.
tracking_uri (str): MLflow tracking server uri.
This handler will utilize the associated callback method called and formats
Expand Down

0 comments on commit fe941cb

Please sign in to comment.