Skip to content

Commit 184bb8e

Browse files
committed
Changed name from GenAI Cookbook to Agentic Cookbook
1 parent eaa019d commit 184bb8e

File tree

4 files changed

+27
-24
lines changed

4 files changed

+27
-24
lines changed

genai-cookbook/README.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Modular GenAI Cookbook
1+
# Modular Agentic Cookbook
22

3-
The GenAI Cookbook is collection of recipes demonstrating how to build modern fullstack web apps using Modular MAX, Next.js, and the Vercel AI SDK. Unlike other recipes in the MAX Recipes repo—which are Python-based—the GenAI Cookbook is written exclusively in TypeScript, providing production-ready patterns for building interactive AI experiences. Each recipe demonstrates an end-to-end workflow with both frontend and backend implementations, including detailed code comments.
3+
The Agentic Cookbook is collection of recipes demonstrating how to build modern fullstack web apps using Modular MAX, Next.js, and the Vercel AI SDK. Unlike other recipes in the MAX Recipes repo—which are Python-based—the Agentic Cookbook is written exclusively in TypeScript, providing production-ready patterns for building interactive AI experiences. Each recipe demonstrates an end-to-end workflow with both frontend and backend implementations, including detailed code comments.
44

55
<img src="https://github.com/user-attachments/assets/e2302038-a950-41a8-acec-47c0d9c09ed6" />
66

@@ -92,7 +92,7 @@ Create an intelligent image captioning system that generates natural language de
9292

9393
## Architecture
9494

95-
The GenAI Cookbook follows a modern fullstack architecture optimized for AI applications, organized as a pnpm workspace monorepo:
95+
The Agentic Cookbook follows a modern fullstack architecture optimized for AI applications, organized as a pnpm workspace monorepo:
9696

9797
```
9898
genai-cookbook/
@@ -185,7 +185,7 @@ To use the cookbook with MAX:
185185
186186
## Running with Docker
187187
188-
The GenAI Cookbook can be run entirely within a Docker container, including the MAX model server and web application. The container uses the universal MAX image with the nightly build, supporting both NVIDIA and AMD GPUs.
188+
The Agentic Cookbook can be run entirely within a Docker container, including the MAX model server and web application. The container uses the universal MAX image with the nightly build, supporting both NVIDIA and AMD GPUs.
189189
190190
### Building the Container
191191
@@ -202,23 +202,25 @@ docker build --ulimit nofile=65535:65535 -t max-cookbook:latest .
202202
You can customize the Docker build using these arguments to reduce container size:
203203

204204
- **MAX_GPU**: Selects the base image (default: `universal`)
205-
- `universal``modular/max-full` (larger, supports all GPU types)
206-
- `amd``modular/max-amd` (smaller, AMD-specific)
207-
- `nvidia``modular/max-nvidia-full` (smaller, NVIDIA-specific)
205+
- `universal``modular/max-full` (larger, supports all GPU types)
206+
- `amd``modular/max-amd` (smaller, AMD-specific)
207+
- `nvidia``modular/max-nvidia-full` (smaller, NVIDIA-specific)
208208

209209
- **MAX_TAG**: Selects the image version (default: `latest`)
210-
- `latest` → Latest stable release
211-
- `nightly` → Nightly development builds
212-
- Specific versions (e.g., `25.7.0`)
210+
- `latest` → Latest stable release
211+
- `nightly` → Nightly development builds
212+
- Specific versions (e.g., `25.7.0`)
213213

214214
**Examples:**
215215

216216
Build smaller AMD-specific container:
217+
217218
```bash
218219
docker build --build-arg MAX_GPU=amd --ulimit nofile=65535:65535 -t max-cookbook:amd .
219220
```
220221

221222
Build smaller NVIDIA-specific container with nightly builds:
223+
222224
```bash
223225
docker build --build-arg MAX_GPU=nvidia --build-arg MAX_TAG=nightly --ulimit nofile=65535:65535 -t max-cookbook:nvidia-nightly .
224226
```
@@ -256,8 +258,9 @@ docker run \
256258
```
257259

258260
**Configuration:**
261+
259262
- **Port 8000**: MAX model serving endpoint
260-
- **Port 3000**: GenAI Cookbook web application
263+
- **Port 3000**: Agentic Cookbook web application
261264
- **HF_TOKEN**: Your HuggingFace token for downloading models
262265
- **MAX_MODEL**: The model to serve (e.g., `google/gemma-3-27b-it`)
263266
- **Volume mount**: Caches downloaded models in `~/.cache/huggingface`

genai-cookbook/apps/cookbook/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { CookbookProvider } from '@/context'
99
import { endpointsRoute } from '@/utils/constants'
1010

1111
export const metadata: Metadata = {
12-
title: 'Modular GenAI Cookbook',
12+
title: 'Modular Agentic Cookbook',
1313
}
1414

1515
export default function RootLayout({ children }: { children: React.ReactNode }) {

genai-cookbook/apps/cookbook/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default function Header({
3737
</ActionIcon>
3838
</Group>
3939
<Title style={{ fontWeight: 'normal' }} order={5}>
40-
<Link href={cookbookRoute()}>Modular GenAI Cookbook</Link>
40+
<Link href={cookbookRoute()}>Modular Agentic Cookbook</Link>
4141
</Title>
4242
<ThemeToggle stroke={iconStroke} />
4343
</Flex>

genai-cookbook/metadata.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
version: 1.0
2-
long_title: "Collection of recipes featuring MAX, Next.js, and Vercel AI SDK"
3-
short_title: "Modular GenAI Cookbook"
4-
author: "Bill Welense"
5-
author_image: "author/billw.jpg"
6-
author_url: "https://www.linkedin.com/in/welense/"
7-
github_repo: "https://github.com/modular/max-recipes/tree/main/genai-cookbook"
8-
date: "22-09-2025"
9-
difficulty: "beginner"
2+
long_title: 'Collection of recipes featuring MAX, Next.js, and Vercel AI SDK'
3+
short_title: 'Modular Agentic Cookbook'
4+
author: 'Bill Welense'
5+
author_image: 'author/billw.jpg'
6+
author_url: 'https://www.linkedin.com/in/welense/'
7+
github_repo: 'https://github.com/modular/max-recipes/tree/main/genai-cookbook'
8+
date: '22-09-2025'
9+
difficulty: 'beginner'
1010
tags:
11-
- max-serve
12-
- gui
11+
- max-serve
12+
- gui
1313

1414
tasks:
15-
- pnpm dev
15+
- pnpm dev

0 commit comments

Comments
 (0)