You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to improve logging throughout the whole framework and enable the user to configure verbosity as well as output of the logs.
agent already has log level as property so we'll only need to provide the means for piping the logs to a file (or similar means)
logging within the framework is mainly happening on the INFO level but under-the-hood actions should be logged as well to properly debug a running agent
Potential solution could be a config mapping which may be created by the user or generated and filled with default values on demand by running the agent with a CLI argument.
By using this approach it should also be easier to scale agent deployment if we can put every agent init argument inside the config map, enabling the developer to invoke:
configs= ["./config_a.yaml", "./config_b.yaml", ...] # list of config filesagents= []
forconfinconfigs:
agents.append(Agent(config=conf))
The text was updated successfully, but these errors were encountered:
We need to improve logging throughout the whole framework and enable the user to configure verbosity as well as output of the logs.
Potential solution could be a config mapping which may be created by the user or generated and filled with default values on demand by running the agent with a CLI argument.
Agent instantiation
my_agent.yaml
By using this approach it should also be easier to scale agent deployment if we can put every agent init argument inside the config map, enabling the developer to invoke:
The text was updated successfully, but these errors were encountered: