--- title: Character View Generator emoji: 🎭 colorFrom: purple colorTo: blue sdk: gradio sdk_version: 4.44.0 app_file: app.py pinned: false license: mit --- # Character View Generator Generate consistent character views from a reference face image using IP-Adapter FaceID Plus. ## API Usage ```python from gradio_client import Client client = Client("ghost-logic/character-view-generator") result = client.predict( face_image="path/to/face.png", view_angle="3/4-right", prompt="anime character, blue skin, orange eyes", negative_prompt="realistic, photo", strength=0.8, guidance_scale=5.0, num_steps=30, seed=42, api_name="/generate_view" ) ``` ## View Angles - `front` - Direct front view - `3/4-left` - Three-quarter view facing left - `3/4-right` - Three-quarter view facing right - `profile-left` - Full side profile facing left - `profile-right` - Full side profile facing right ## For Daggr Integration This space is designed to be called from a daggr pipeline for character sheet generation.