Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ _The agent notices the dresses page registers several tools:_
*
* size - optional - a number between 2 and 14 to filter the results by EU dress size
* size - optional - a color from [Red, Blue, Green, Yellow, Black, White] to filter dresses by
*/
getDresses(size, color)

/*
Expand All @@ -285,18 +286,18 @@ _The agent calls `getDresses(6)` and receives a JSON object:_

```json
{
products: [
"products": [
{
id: 1021,
description: "A short sleeve long dress with full length button placket...",
price: "€180",
image: "img_1024.png",
"id": 1021,
"description": "A short sleeve long dress with full length button placket...",
"price": "€180",
"image": "img_1024.png",
},
{
id: 4320,
description: "A straight midi dress in organic cotton...",
price: "€140",
image: "img_4320.png",
"id": 4320,
"description": "A straight midi dress in organic cotton...",
"price": "€140",
"image": "img_4320.png",
},
...
]
Expand Down