Tools / Friendly Face / BasicWeather
BasicWeather
GPT-4o
GPT-4o mini
Claude 3.5 Haiku
3+
This tool retrieves real-time weather information for any location worldwide and presents it in a clear, readable format. It includes a compact version for chat display and an expanded version for drawer layouts.
Component Overview
Preview
Component Props
Name | Type | description |
---|---|---|
current_temperature | string | |
measurement | fahrenheit | celsius | |
textual_description | string | |
last_update | string | |
1hr_plus | object | |
2hr_plus | object | |
3hr_plus | object | |
4hr_plus | object | |
5hr_plus | object | |
6hr_plus | 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-4o | ✅ | 10/12/2024 |
GPT-4o mini | ✅ | 10/12/2024 |
Claude 3.5 Haiku | ✅ | 10/12/2024 |
3 + |