Closed
Description
Description
There is a minor typo in engine.py
on line 261. Specifically, the information_table
parameter uses the =
symbol instead of :
, which is incorrect for Python type annotations.
Current Code Snippet
def run_article_generation_module(
self,
outline: StormArticle,
information_table=StormInformationTable, # should be ":" not "="
callback_handler: BaseCallbackHandler = None,
) -> StormArticle:
Propsed Fix
def run_article_generation_module(
self,
outline: StormArticle,
information_table: StormInformationTable, # corrected
callback_handler: BaseCallbackHandler = None,
) -> StormArticle:
Metadata
Metadata
Assignees
Labels
No labels