Agents
This module contains the Agent class which can be either an AI architect that produces agents from scratch or an agent that is trained.
Agent
Bases: BaseModel
Agent class that represents either an AI architect or a trained agent.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
str
|
The unique identifier of the agent. |
graph |
Graph
|
The graph associated with the agent. |
input_model |
type[BaseModel | dict]
|
The input model of the agent. |
output_model |
type[BaseModel | dict]
|
The output model of the agent. |
Source code in ebiose/agents/agent.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | |
An agent contains the graph Class which is, to date, the way Ebiose represents the workflow of an agent.
Bases: BaseModel
Graph used to represent the agent workflow on solving a problem.
The graph is formed by a series of nodes, each representing a distinct stage in the problem-solving process. The nodes are connected by edges, which signify the flow of information and decision-making within the graph.
Each node type has a specific role and function within the graph, contributing to the overall problem-solving capacity of the AI model.
Attributes:
| Name | Type | Description |
|---|---|---|
edges |
list[Edge]
|
list of edges in the graph |
nodes |
list[NodeTypes]
|
list of nodes in the graph |
description |
str | None
|
Description of the graph purpose |
shared_context_prompt |
str
|
Prompt shared among all nodes in the graph |
Source code in ebiose/agents/graph.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 118 119 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | |
__validate_outgoing_conditional_edges()
Check for each node that ahs outgoing conditional edges, if it has at least two conditional edges.
Source code in ebiose/agents/graph.py
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | |
__validate_placeholders(info)
Check if all and only the authorized placeholders in the Agentinput are in the graph.
Source code in ebiose/agents/graph.py
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 118 119 | |
add_edge(edge)
Add an edge to the graph.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
edge |
Edge
|
An instance of the Edge class |
required |
Source code in ebiose/agents/graph.py
230 231 232 233 234 235 236 | |
add_node(node)
Add a node to the graph.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
node |
BaseNode
|
An instance of the Node class |
required |
Source code in ebiose/agents/graph.py
238 239 240 241 242 243 244 245 246 247 | |
get_end_node_id()
Get the id of the end node in the graph.
Returns: The id of the end node
Source code in ebiose/agents/graph.py
309 310 311 312 313 314 315 316 317 318 | |
get_last_node_ids()
Get the ids of the last nodes in the graph.
Returns:
| Type | Description |
|---|---|
list[BaseNode]
|
A list of ids of the nodes that have the EndNode as outgoing edges |
Source code in ebiose/agents/graph.py
264 265 266 267 268 269 270 271 272 273 274 | |
get_node(node_id)
Get a node from the graph.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
node_id |
str
|
The id of the node |
required |
Returns:
| Type | Description |
|---|---|
BaseNode
|
The node with the given id |
Source code in ebiose/agents/graph.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 | |
get_outgoing_edges(node_id, conditional=None)
Get the outgoing edges of a node. By default, return all edges connected to the node.
node_id: The id of the node conditional: If True, only return edges that are conditional. If False, only return edges that are non-conditional. If None, return all edges.
Returns: A list of edges that are connected to the node
Source code in ebiose/agents/graph.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | |
get_outgoing_nodes(node_id, conditional=None)
Get the outgoing nodes of a node. By default, return all nodes connected to the node.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
node_id |
str
|
The id of the node |
required |
conditional |
bool | None
|
If True, only return nodes that are connected by a conditional edge.If False, only return nodes that are connected by a non-conditional edge. If None, return all nodes. |
None
|
Returns:
| Type | Description |
|---|---|
list[BaseNode]
|
A list of nodes that are connected to the node |
Source code in ebiose/agents/graph.py
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | |
to_mermaid_str(orientation='TD')
Generate a mermaid string representation of the graph.
Note
The orientation of the graph can be set to one of the following values:
- TB: Top to bottom
- TR: Top to right
- TD: Top to down
- RL: Right to left
- LR: Left to right
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
orientation |
Literal['TB', 'TR', 'TD', 'RL', 'LR']
|
The orientation of the graph. |
'TD'
|
Source code in ebiose/agents/graph.py
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | |
validate_graph(info)
Validate the graph by checking placeholders and outgoing conditional edges.
Source code in ebiose/agents/graph.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | |
validate_nodes(nodes)
classmethod
Validate the nodes in the graph and generate explicit errors for retries.
Source code in ebiose/agents/graph.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | |
validate_shared_context_prompt(shared_context_prompt)
classmethod
Make sure that the shared context prompt is a string.
Source code in ebiose/agents/graph.py
140 141 142 143 144 145 146 147 148 | |