Tools provided
Tools the agent exposes — your AI client calls them automatically when it needs them.
- updatePet — Update an existing pet. - Update an existing pet by Id.write
- addPet — Add a new pet to the store. - Add a new pet to the store.write
- findPetsByStatus — Finds Pets by status. - Multiple status values can be provided with comma separated strings.write
- findPetsByTags — Finds Pets by tags. - Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.write
- getPetById — Find pet by ID. - Returns a single pet.write
- updatePetWithForm — Updates a pet in the store with form data. - Updates a pet resource based on the form data.write
- deletePet — Deletes a pet. - Delete a pet.write
- uploadFile — Uploads an image. - Upload image of the pet.write
- getInventory — Returns pet inventories by status. - Returns a map of status codes to quantities.write
- placeOrder — Place an order for a pet. - Place a new order in the store.write
- getOrderById — Find purchase order by ID. - For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions.write
- deleteOrder — Delete purchase order by identifier. - For valid response try integer IDs with value < 1000. Anything above 1000 or non-integers will generate API errors.write
- createUser — Create user. - This can only be done by the logged in user.write
- createUsersWithListInput — Creates list of users with given input array. - Creates list of users with given input array.write
- loginUser — Logs user into the system. - Log into the system.write
- logoutUser — Logs out current logged in user session. - Log user out of the system.write
- getUserByName — Get user by user name. - Get user detail based on username.write
- updateUser — Update user resource. - This can only be done by the logged in user.write
- deleteUser — Delete user resource. - This can only be done by the logged in user.write
