get_puzzle
Retrieve complete details of a 'Turtle Soup' puzzle by specifying its title, enabling users to access full puzzle content for gameplay or reference.
Instructions
获取一个谜题的完整内容
Args:
puzzle_title: 海龟汤的标题
Returns:
选择结果信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
puzzle_title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"puzzle_title": {
"title": "Puzzle Title",
"type": "string"
}
},
"required": [
"puzzle_title"
],
"title": "get_puzzleArguments",
"type": "object"
}