-
Notifications
You must be signed in to change notification settings - Fork 15
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
added a planning interface and renamed the DDL interface to learners. … #53
Conversation
…Now we have planners and learners. Closes #50
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we want to get the 18_rebase branch merged in first just to make sure there aren't conflicts.
I would like to talk through the differences between the learners and planners since they seem very similar. I was also expecting to see how they are connected together, but I'm missing where that is. How does the learner inform the planner?
We need to start updating the Readme as we add new concepts (I should update it with the datasoure/adapter changes as well).
Planners interface class for managing all planning-based AI components | ||
""" | ||
import importlib.util | ||
import importlib.util |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Import twice?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, it's done in learners_interface.py as well
return diagnoses | ||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra new lines
Codecov Report
@@ Coverage Diff @@
## main #53 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 21 22 +1
Lines 917 942 +25
Branches 130 131 +1
=========================================
+ Hits 917 942 +25
|
…tion of planners versus learners
…Now we have planners and learners. Closes #50
…tion of planners versus learners
7fc6c23
to
8b38584
Compare
16f36ce
to
64c2368
Compare
…Now we have planners and learners. Closes #50
…tion of planners versus learners
Removed unused test Changed str(MagicMock()) Removed extra line feeds
64c2368
to
2d84335
Compare
added a planning interface and renamed the DDL interface to learners. …
…Now we have planners and learners. Closes #50