File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ class LlmAgent(BaseAgent):
129
129
global_instruction : Union [str , InstructionProvider ] = ''
130
130
"""Instructions for all the agents in the entire agent tree.
131
131
132
- global_instruction ONLY takes effect in root agent.
132
+ ONLY the global_instruction in root agent will take effect .
133
133
134
134
For example: use global_instruction to make all agents have a stable identity
135
135
or personality.
@@ -204,6 +204,11 @@ class LlmAgent(BaseAgent):
204
204
"""
205
205
# Advance features - End
206
206
207
+ # TODO: remove below fields after migration. - Start
208
+ # These fields are added back for easier migration.
209
+ examples : Optional [ExamplesUnion ] = None
210
+ # TODO: remove above fields after migration. - End
211
+
207
212
# Callbacks - Start
208
213
before_model_callback : Optional [BeforeModelCallback ] = None
209
214
"""Callback or list of callbacks to be called before calling the LLM.
You can’t perform that action at this time.
0 commit comments