gitextract_awr454dt/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _template/ │ ├── botData/ │ │ ├── chatbot-config.json │ │ └── systemPrompt.txt │ ├── index.html │ ├── package.json │ └── sdk/ │ ├── ew-chatbot.css │ ├── ew-chatbot.html │ └── src/ │ ├── controllers/ │ │ └── chatBotController.js │ ├── index.js │ ├── services/ │ │ └── promptService.js │ └── views/ │ └── chatBotView.js ├── aula01-criando-llmstxt/ │ ├── botData/ │ │ ├── chatbot-config.json │ │ └── systemPrompt.txt │ ├── index.html │ ├── llms.txt │ ├── package.json │ └── sdk/ │ ├── ew-chatbot.css │ ├── ew-chatbot.html │ └── src/ │ ├── controllers/ │ │ └── chatBotController.js │ ├── index.js │ ├── services/ │ │ └── promptService.js │ └── views/ │ └── chatBotView.js ├── aula02-integrando-ai/ │ ├── botData/ │ │ ├── chatbot-config.json │ │ └── systemPrompt.txt │ ├── index.html │ ├── llms.txt │ ├── package.json │ └── sdk/ │ ├── ew-chatbot.css │ ├── ew-chatbot.html │ └── src/ │ ├── controllers/ │ │ └── chatBotController.js │ ├── index.js │ ├── services/ │ │ └── promptService.js │ └── views/ │ └── chatBotView.js ├── aula03-recebendo-como-stream/ │ ├── botData/ │ │ ├── chatbot-config.json │ │ └── systemPrompt.txt │ ├── index.html │ ├── llms.txt │ ├── package.json │ └── sdk/ │ ├── ew-chatbot.css │ ├── ew-chatbot.html │ └── src/ │ ├── controllers/ │ │ └── chatBotController.js │ ├── index.js │ ├── services/ │ │ └── promptService.js │ └── views/ │ └── chatBotView.js └── aula04-abortando-requisicoes/ ├── botData/ │ ├── chatbot-config.json │ └── systemPrompt.txt ├── index.html ├── llms.txt ├── package.json └── sdk/ ├── ew-chatbot.css ├── ew-chatbot.html └── src/ ├── controllers/ │ └── chatBotController.js ├── index.js ├── services/ │ └── promptService.js └── views/ └── chatBotView.js