Skip to content

Commit

Permalink
Removed __init__.py from plugin paths
Browse files Browse the repository at this point in the history
  • Loading branch information
asgibson committed Nov 19, 2024
1 parent 5d74c18 commit 9ccc687
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 9ccc687

Please sign in to comment.