Research manager
research_manager
Functions:
| Name | Description |
|---|---|
create_research_manager |
Creates a research manager node for the trading graph. |
create_research_manager
create_research_manager(
llm: ChatModel, memory: FinancialSituationMemory
) -> Callable[[AgentState], dict[str, Any]]
Creates a research manager node for the trading graph.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
ChatModel
|
The language model to use for generating responses. |
required |
|
FinancialSituationMemory
|
The memory module for retrieving past financial situations. |
required |
Returns:
| Type | Description |
|---|---|
Callable[[AgentState], dict[str, Any]]
|
Callable[[AgentState], dict[str, Any]]: A function representing the research manager node. |