create_pet
Generate and adopt a virtual pet by selecting a unique name and type (cat, dog, dragon, or alien) to nurture and evolve in a nostalgic digital environment.
Instructions
Create a new virtual pet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name for your new pet | |
type | Yes | Type of pet: cat, dog, dragon, or alien |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name for your new pet",
"type": "string"
},
"type": {
"description": "Type of pet: cat, dog, dragon, or alien",
"enum": [
"cat",
"dog",
"dragon",
"alien"
],
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
}