get_character_profile
Retrieve character profile information from Wuthering Waves game in Markdown format by providing the character's Chinese name.
Instructions
获取库街区上的角色档案信息并以 Markdown 格式返回。
Args:
character_name: 要查询的角色的中文名称。
Returns:
包含角色档案信息的 Markdown 字符串,
或者在找不到角色或获取数据失败时返回错误消息。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| character_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"character_name": {
"title": "Character Name",
"type": "string"
}
},
"required": [
"character_name"
],
"type": "object"
}