set_price
Define the price per cup of lemonade in the Lemonade Stand game using the 'set_price' tool. Input the game ID and desired price to manage pricing strategies effectively.
Instructions
Set the price per cup of lemonade
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gameId | Yes | The game ID | |
price | Yes | Price per cup in dollars |
Input Schema (JSON Schema)
{
"properties": {
"gameId": {
"description": "The game ID",
"type": "string"
},
"price": {
"description": "Price per cup in dollars",
"type": "number"
}
},
"required": [
"gameId",
"price"
],
"type": "object"
}