Skip to content

Commit e59385a

Browse files
committed
fix: example function error
1 parent 5150c60 commit e59385a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tools/maps/searchNearby.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const SCHEMA = {
99
center: z.object({
1010
value: z.string().describe("Address, landmark name, or coordinates (coordinate format: lat,lng)"),
1111
isCoordinates: z.boolean().default(false).describe("Whether the value is coordinates"),
12-
}).describe("Search center point").example({"value": "49.3268778,-123.0585982", "isCoordinates": true}),
12+
}).describe("Search center point (e.g. value: 49.3268778,-123.0585982, isCoordinates: true)"),
1313
keyword: z.string().optional().describe("Search keyword (e.g., restaurant, cafe, hotel)"),
1414
radius: z.number().default(1000).describe("Search radius in meters"),
1515
openNow: z.boolean().default(false).describe("Only show places that are currently open"),

0 commit comments

Comments
 (0)