-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nice description (from Samuel Cozannet)
- Loading branch information
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
. | ||
AI powered agent, running locally on your machine, analyzing what's going on in the logs and overall on the system, and advertizing what's wrong, then, hopefully, offer an answer to help you fix it. | ||
|
||
You know when you try to start a command and the system tells you "maybe you need to apt-get install <X> so it works"? Well, this would be the same, but for any aspect of your system. "You've been hacked, you should install rkhunter", "mysql is not performing well, you should ..." | ||
|
||
There are 3 phases to get this done. | ||
First a "model" has to be trained. This requires a lot of data from running and failing systems, to identify issues, causes, and solutions | ||
Then an agent capable of using this model and run it locally has to be created (you don't want to ship your logs to the cloud permanently, everything has to be local) | ||
Then it needs to improve over time, and keep getting better as more and more problems arise, so it's kind of a ever-running system. |