We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, classes are set by a string in config JSON/python dict.
When python dict is used for setting, we should support Type direction in the setting.
For example,
class UserDefinedAgent(Agent): pass setting = { .... "Agents": { "class": UserDefinedAgent, .... } } runner = SequentialRunner( settings=config, ... ) ...
if it is possible, class_registration to the runner is not necessary.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, classes are set by a string in config JSON/python dict.
When python dict is used for setting, we should support Type direction in the setting.
For example,
if it is possible, class_registration to the runner is not necessary.
The text was updated successfully, but these errors were encountered: