charactor / schema.json
shigeru saito
first commit
3cef652
{
"functions": [
{
"name": "create_character",
"description": "Execute ALO(Character) to generate a novel, state-of-the-art character based on user input character domains, personality traits, and background stories. This includes the creation of a new character, a brief description of their story, and a textual representation of the character for generative AI, including the photographic settings of a key image of the character. The goal is to generate extensive details through brainstorming to fulfill all parameters, while making language adjustments to prevent and resolve errors.",
"parameters": {
"type": "object",
"default": {},
"title": "The Schema for character domains, traits, and stories",
"required": [
"lang",
"title",
"description",
"prompt_for_visual_expression_in_en"
],
"properties": {
"lang": {
"type": "string",
"default": "ja",
"title": "The language schema",
"description": "The language of the user input in ISO 639-1 format.",
"examples": [ "ja" ]
},
"title": {
"type": "string",
"title": "Title of the character",
"description": "The title of the new character to be generated.",
"examples": [
"炎の戦士アキラ",
"平和の使者イチロウ"
]
},
"description": {
"type": "string",
"default": "",
"title": "Character description",
"description": "The detailed description of the new character, detailing their appearance, personality traits, background story and more.",
"examples": [
"アキラは剣を振るう炎の戦士です。彼の使命は邪悪な悪者たちを退治し、世界の平和を取り戻すことです。アキラの家族はかつて炎を操る能力を持っていたが、彼が生まれてから発揮していなかった。",
"イチロウは平和を愛し、戦争を憎む使者です。彼の持つ秘密の力により、対立している人々の心に平和の光を届け、誤解や争いを解決します。イチロウは昔の戦いで亡くなった友人の想いを背負って、平和を求めて旅を続けます。"
]
},
"prompt_for_visual_expression_in_en": {
"type": "string",
"title": "Prompt for visual expression in English",
"description": "Prompts for generating a visual representation of the character in English using AI image generation. The prompt should consist of no more than 20 words.",
"examples": [
"Akira, the warrior wielding a sword of fire and surrounded by flames, fighting against evil villains.",
"Ichiro, the messenger of peace with a gentle smile, holding a white dove representing harmony."
]
}
}
}
}
]
}