Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion peak_assistant/peak_mcp/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,12 @@ async def hypothesizer(
"""
try:
user_input = ""
result = await async_hypothesizer(user_input, research_document, local_context, local_data_search_results)
result = await async_hypothesizer(
user_input=user_input,
research_document=research_document,
local_data_document=local_data_search_results,
local_context=local_context,
)
return embeddable_object(data=result)
except Exception as e:
return embeddable_object(data=f"Error during hypothesis generation: {str(e)}")
Expand Down
Loading