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
{{ message }}
This repository has been archived by the owner on Dec 5, 2020. It is now read-only.
Class Brain is growing bigger and bigger with quite long methods and duplicated code.
It should be broken down in more components and maybe made imutable.
Idea: Brain might work with Knowledges or Understandings. These would be responsible for returning the Steps to be executed. In other words: "the agent (brain) has knowledge of how to index a site, index a page, delete an index etc"
The text was updated successfully, but these errors were encountered:
This is postponed to version 1.1.0, since we should publish the release soon and do not have time to keep going back and refactor code. Also, no more actions/commands steps will be implemented until then.
Hi @amihaiemil! I can help you index your Github-hosted website, provided that the repository name respects the format owner.github.io (or has a gh-pages branch) and the command is given by the repo's owner.
The Command and Logger should be passed as params in the perform(...) method to:
make the building of the Steps pyramid easier and more readable
make sure all the steps in the pyramid work on the same command and with the same logger (right now, you can add any steps on top of eachother, and each step may work with a different command)
Class Brain is growing bigger and bigger with quite long methods and duplicated code.
It should be broken down in more components and maybe made imutable.
Idea:
Brain
might work withKnowledge
s orUnderstanding
s. These would be responsible for returning the Steps to be executed. In other words: "the agent (brain) has knowledge of how to index a site, index a page, delete an index etc"The text was updated successfully, but these errors were encountered: