MCPcopy Create free account
hub / github.com/MiniMax-AI/OpenRoom / CharacterMetaInfo

Interface CharacterMetaInfo

apps/webuiapps/src/lib/characterManager.ts:22–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20export type CharacterEmotion = (typeof CHARACTER_EMOTION_LIST)[number];
21
22export 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
37export interface CharacterConfig {
38 id: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected