Skip to content
New issue

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

Removed __init__.py from plugin paths #171

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions onair/config/default_config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ DataSourceFile = onair/data_handling/csv_parser.py
[PLUGINS]
# NOTE: even though keys are required, they may be set to empty dicts
# Required Key: KnowledgeRepPluginDict(s) are used by the VehicleRep
KnowledgeRepPluginDict = {'generic':'plugins/generic/__init__.py'}
KnowledgeRepPluginDict = {'generic':'plugins/generic'}
# Required Key: LearnersPluginDict(s) are used by Agent for learning
LearnersPluginDict = {'generic':'plugins/generic/__init__.py'}
LearnersPluginDict = {'generic':'plugins/generic'}
# Required Key: LearnersPluginDict(s) are used by Agent for planning
PlannersPluginDict = {'generic':'plugins/generic/__init__.py'}
PlannersPluginDict = {'generic':'plugins/generic'}
# Required Key: ComplexPluginDict(s) are used by Agent for complex reasoning
ComplexPluginDict = {'generic':'plugins/generic/__init__.py'}
ComplexPluginDict = {'generic':'plugins/generic'}

# Optional Section: OPTIONS are settable values to change running experience
[OPTIONS]
Expand Down
Loading