Main Agent
Main agent for the talk2scholars app using ReAct pattern.
This module implements a hierarchical agent system where a supervisor agent routes queries to specialized sub-agents. It follows the LangGraph patterns for multi-agent systems and implements proper state management.
get_app(thread_id, llm_model=ChatOpenAI(model='gpt-4o-mini', temperature=0))
Initializes and returns the LangGraph-based hierarchical agent system.
This function constructs the agent workflow by defining nodes for the supervisor
and sub-agents. It compiles the graph using StateGraph
to enable structured
conversational workflows.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
thread_id
|
str
|
A unique session identifier for tracking conversation state. |
required |
llm_model
|
BaseChatModel
|
The language model used for query processing.
Defaults to |
ChatOpenAI(model='gpt-4o-mini', temperature=0)
|
Returns:
Name | Type | Description |
---|---|---|
StateGraph |
A compiled LangGraph application that can process user queries. |
Example
app = get_app("thread_123") result = app.invoke(initial_state)
Source code in aiagents4pharma/talk2scholars/agents/main_agent.py
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
|
get_hydra_config()
Loads the Hydra configuration for the main agent.
This function initializes the Hydra configuration system and retrieves the settings
for the Talk2Scholars
agent, ensuring that all required parameters are loaded.
Returns:
Name | Type | Description |
---|---|---|
DictConfig |
The configuration object containing parameters for the main agent. |
Source code in aiagents4pharma/talk2scholars/agents/main_agent.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
make_supervisor_node(llm_model, thread_id)
Creates the supervisor node responsible for routing user queries to the appropriate sub-agents.
This function initializes the routing logic by leveraging the system and router prompts defined
in the Hydra configuration. The supervisor determines whether to
call a sub-agent (like s2_agent
, zotero_agent
)
or directly generate a response using the language model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
llm_model
|
BaseChatModel
|
The language model used for decision-making. |
required |
thread_id
|
str
|
Unique identifier for the current conversation session. |
required |
Returns:
Name | Type | Description |
---|---|---|
Callable |
Callable
|
The supervisor node function that processes user queries and |
Callable
|
decides the next step. |
Source code in aiagents4pharma/talk2scholars/agents/main_agent.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|