Tools / Friendly Face / Boarding Pass
Boarding Pass
GPT
GPT mini
Claude
3+
This tool connects to a specified airline to provide detailed boarding pass information, including departure time, origin and destination, terminal, gate, and seat details.
Component Overview

1
1
flight_number
2
2
airline_logo
3
3
departure_time
4
4
arrival_time
5
5
total_duration
6
6
origin
7
7
destination
8
8
terminal
9
9
gate
10
10
seat
11
11
boarding_code
Preview

Component Props
| Name | Type | description |
|---|---|---|
| flight_number | string | flight number |
| airline_logo | node | The logo to be displayed. |
| departure_time | unix_timestamp | |
| arrival_time | unix_timestamp | |
| total_duration | minutes | |
| origin | object | |
| destination | object | |
| terminal | string | |
| gate | string | |
| seat | string | |
| boarding_code | node | |
| airline | object |
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 + |
