You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i try to run agent_anual_report.ipynb
when i Execute below cell
"
register_toolkits(
[
FMPUtils.get_sec_report, # Retrieve SEC report url and filing date
IPythonUtils.display_image, # Display image in IPython
TextUtils.check_text_length, # Check text length
ReportLabUtils.build_annual_report, # Build annual report in designed pdf format
ReportAnalysisUtils, # Expert Knowledge for Report Analysis
ReportChartUtils, # Expert Knowledge for Report Chart Plotting
],
expert,
user_proxy,
)
"
i got an error for value error
error is
"ValueError Traceback (most recent call last)
Cell In[6], line 1
----> 1 register_toolkits(
2 [
3 FMPUtils.get_sec_report, # Retrieve SEC report url and filing date
4 IPythonUtils.display_image, # Display image in IPython
5 TextUtils.check_text_length, # Check text length
6 ReportLabUtils.build_annual_report, # Build annual report in designed pdf format
7 ReportAnalysisUtils, # Expert Knowledge for Report Analysis
8 ReportChartUtils, # Expert Knowledge for Report Chart Plotting
9 ],
10 expert,
11 user_proxy,
12 )
FinRobot\finrobot\toolkits.py:33, in register_toolkits(config, caller, executor, **kwargs)
[30]FinRobot/finrobot/toolkits.py:30) for tool in config:
[32FinRobot/finrobot/toolkits.py:32) if isinstance(tool, type):
---> [33]FinRobot/finrobot/toolkits.py:33) register_tookits_from_cls(caller, executor, tool, **kwargs)
[34]FinRobot/finrobot/toolkits.py:34) continue
[36]FinRobot/finrobot/toolkits.py:36) tool_dict = {"function": tool} if callable(tool) else tool
FinRobot\finrobot\toolkits.py:106, in register_tookits_from_cls(caller, executor, cls, include_private)
98 else:
...
-> [2707]anaconda3/envs/finrobo/lib/site-packages/autogen/agentchat/conversable_agent.py:2707) raise ValueError("Function description is required, none found.")
[2709]anaconda3/envs/finrobo/lib/site-packages/autogen/agentchat/conversable_agent.py:2709) # get JSON schema for the function
[2710]anaconda3/envs/finrobo/lib/site-packages/autogen/agentchat/conversable_agent.py:2710) f = get_function_schema(func, name=func._name, description=func._description)
ValueError: Function description is required, none found."
The text was updated successfully, but these errors were encountered:
When i try to run agent_anual_report.ipynb
when i Execute below cell
"
register_toolkits(
[
FMPUtils.get_sec_report, # Retrieve SEC report url and filing date
IPythonUtils.display_image, # Display image in IPython
TextUtils.check_text_length, # Check text length
ReportLabUtils.build_annual_report, # Build annual report in designed pdf format
ReportAnalysisUtils, # Expert Knowledge for Report Analysis
ReportChartUtils, # Expert Knowledge for Report Chart Plotting
],
expert,
user_proxy,
)
"
i got an error for value error
error is
"ValueError Traceback (most recent call last)
Cell In[6], line 1
----> 1 register_toolkits(
2 [
3 FMPUtils.get_sec_report, # Retrieve SEC report url and filing date
4 IPythonUtils.display_image, # Display image in IPython
5 TextUtils.check_text_length, # Check text length
6 ReportLabUtils.build_annual_report, # Build annual report in designed pdf format
7 ReportAnalysisUtils, # Expert Knowledge for Report Analysis
8 ReportChartUtils, # Expert Knowledge for Report Chart Plotting
9 ],
10 expert,
11 user_proxy,
12 )
FinRobot\finrobot\toolkits.py:33, in register_toolkits(config, caller, executor, **kwargs)
[30]FinRobot/finrobot/toolkits.py:30) for tool in config:
[32FinRobot/finrobot/toolkits.py:32) if isinstance(tool, type):
---> [33]FinRobot/finrobot/toolkits.py:33) register_tookits_from_cls(caller, executor, tool, **kwargs)
[34]FinRobot/finrobot/toolkits.py:34) continue
[36]FinRobot/finrobot/toolkits.py:36) tool_dict = {"function": tool} if callable(tool) else tool
FinRobot\finrobot\toolkits.py:106, in register_tookits_from_cls(caller, executor, cls, include_private)
98 else:
...
-> [2707]anaconda3/envs/finrobo/lib/site-packages/autogen/agentchat/conversable_agent.py:2707) raise ValueError("Function description is required, none found.")
[2709]anaconda3/envs/finrobo/lib/site-packages/autogen/agentchat/conversable_agent.py:2709) # get JSON schema for the function
[2710]anaconda3/envs/finrobo/lib/site-packages/autogen/agentchat/conversable_agent.py:2710) f = get_function_schema(func, name=func._name, description=func._description)
ValueError: Function description is required, none found."
The text was updated successfully, but these errors were encountered: