Tools / Friendly Face / Instructions
Instructions
GPT
GPT mini
Claude
3+
This tool enables AI agents to deliver step-by-step instructions, supporting images and voice-first descriptions for accessibility. Steps can also include video or 3D content.
Component Overview

1
1
instruction_header
2
2
instruction_steps
3
3
current_step
4
4
instruction
Preview

Component Props
| Name | Type | description |
|---|---|---|
| instruction_header | object | |
| instruction_steps | object | |
| current_step | string | |
| instruction | node |
AI Schema
The use of LLM Schema helps in smooth data integration across different systems and applications. It provides a common language and framework for sharing and exchanging data, allowing disparate systems to communicate effectively.
1
2
3
4
5
6
7
8
9
10
11
12
13
import z from 'zod';
const recipeSchema = z.object({
tool: z.object({
name: z.string(),
items: z.array(
z.object({
name: z.string(),
amount: z.string(),
}),
),
steps: z.array(z.string()),
}),
});Works with
| Model | Version | Tested |
|---|---|---|
| GPT | ✅ | 10/12/2024 |
| GPT mini | ✅ | 10/12/2024 |
| Claude | ✅ | 10/12/2024 |
| 3 + |
