Skip to content

Commit

Permalink
Merge pull request #258 from MLSysOps/lefan/local-git
Browse files Browse the repository at this point in the history
[MRG][NIT] Add missing parameter in comment
  • Loading branch information
zlfben authored Oct 26, 2024
2 parents 6192884 + dc9f6bb commit 57b64a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mle/agents/summarizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,9 @@ def process_knowledge(self):
def summarize(self, start_date=None, end_date=None):
"""
Handle the query from the model query response.
Args: None
Args:
start_date: the start date of the user activity.
end_date: the end date of the user activity.
"""
with self.console.status("MLE summarizer is summarizing the project..."):
self.chat_history.append({"role": "user", "content": self.process_knowledge()})
Expand Down
2 changes: 2 additions & 0 deletions mle/workflow/report_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ def report_local(
:param git_path: the path to the local Git repository.
:param email: the email address.
:param okr_str: the OKR string.
:param start_date: the start date.
:param end_date: the end date.
:param model: the model to use.
:return:
"""
Expand Down

0 comments on commit 57b64a8

Please sign in to comment.