| 20 | export type CharacterEmotion = (typeof CHARACTER_EMOTION_LIST)[number]; |
| 21 | |
| 22 | export interface CharacterMetaInfo { |
| 23 | base_image_url?: string; |
| 24 | /** Emotion → video/image URL mapping for expression switching */ |
| 25 | emotion_images?: Record<string, string>; |
| 26 | /** Emotion → array of video URLs for animated expressions */ |
| 27 | emotion_videos?: Record<string, string[]>; |
| 28 | /** Various character image URLs */ |
| 29 | avatar_img_url?: string; |
| 30 | chat_pic_url?: string; |
| 31 | head_img_url?: string; |
| 32 | back_img_url?: string; |
| 33 | side_img_url?: string; |
| 34 | front_img_url?: string; |
| 35 | } |
| 36 | |
| 37 | export interface CharacterConfig { |
| 38 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected