mirror of
https://github.com/SillyTavern/SillyTavern-Extras.git
synced 2026-01-26 17:20:04 +00:00
* talkinghead: fix and improve THA3 manual poser * server.py: no, don't yet use fp16 for talkinghead
21 lines
651 B
Bash
Executable File
21 lines
651 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Launch THA3 in standalone app mode.
|
|
#
|
|
# This standalone app mode does not interact with SillyTavern.
|
|
#
|
|
# The usual way to run this fork of THA3 is as a SillyTavern-extras plugin.
|
|
# The standalone app mode comes from the original THA3 code, and is included
|
|
# for testing and debugging.
|
|
#
|
|
# If you want to manually pose a character (to generate static expression images),
|
|
# use `start_manual_poser.sh` instead.
|
|
#
|
|
# This must run in the "extras" conda venv!
|
|
# Do this first:
|
|
# conda activate extras
|
|
#
|
|
# The `--char=...` flag can be used to specify which image to load under "tha3/images".
|
|
#
|
|
python -m tha3.app.app --char=example.png $@
|