This file contains hidden or 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
| ## Visão geral | |
| Pense na IA como uma empresa: | |
| * **Modelo/LLM:** o cérebro do funcionário. | |
| * **Prompt/instruções:** o cargo e as regras de trabalho. | |
| * **Skill:** o conhecimento de como executar uma tarefa. | |
| * **Tool:** o instrumento usado para executar a tarefa. | |
| * **MCP:** o padrão de conexão entre a IA e os instrumentos. | |
| * **Agent:** o funcionário completo, capaz de analisar, decidir e agir. |
This file contains hidden or 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
| # pre-requisites: | |
| # - installed NVM via Homebrew | |
| # - follow the projects README initial setup | |
| # !/bin/bash | |
| docker stop $(docker ps -a -q) || true | |
| echo "====================" | |
| echo "setting up events..." | |
| echo "--------------------" | |
| cd events | |
| . $(brew --prefix nvm)/nvm.sh |
This file contains hidden or 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
| /** | |
| * How to use? | |
| * | |
| * - Install Node.JS | |
| * - Install NPM | |
| * - Via terminal from here: | |
| * -- Browse to the Pictures folder | |
| * -- Save this script in a file called `index.js` (1st execution only) | |
| * -- Execute `npm i` (1st execution only) | |
| * -- Execute `node ./index.js` |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Threading; | |
| namespace Your.Namespace.Here // <=== update the namespace! | |
| { | |
| /// <summary> | |
| /// Time manipulation tools. | |
| /// </summary> | |
| public static class TimeUtil |