Download the Book
Finally, a book that makes AI approachable for developers. This book is here to jumpstart your AI learning journey. You won’t need to dust off your Python spellbook, train neural networks, or get a PhD in statistics. All you need is some basic JavaScript knowledge and a willingness to learn.
We’ll skip all the data science wizardry by using pre-trained generative AI models (specifically LLMs). APIs and SDKs have made these models accessible to developers in the languages they’re already building applications with.
This book will guide you through combining your own data with the power of LLMs using a technique called RAG (Retrieval Augmented Generation). During this journey, you'll learn important concepts while gaining practical experience with some key JavaScript libraries: Node.js, Express, and LangChain.js.
You can follow me on LinkedIn for more:
Jacob Orshalick | LinkedIn
The following steps will guide you through getting part 1 up and running on your machine.
~ % git clone <url>
~ % node -v
part1
directory in your terminal and run:~/ai-for-developers/part1 % npm install
~/ai-for-developers/part1 % export OPENAI_API_KEY=<YOUR_KEY_VALUE>
~/ai-for-developers/node % node server-part1.mjs
The project contains folders with examples to support the "The Busy Developers Guide to GEN AI" e-book. Each folder contains the example for that part in the series.
For each part you'll find a README.md
with instructions to get the example up and running.