mirror of
https://github.com/facefusion/facefusion.git
synced 2026-04-23 01:46:09 +02:00
423fee9d7f
This commit adds comprehensive API process functionality including: - Remote streaming support - Session management and context handling - Media type support (video/audio/image) - Asset management and path isolation - Workflow refactoring and optimization - Security improvements and state violation handling - Gallery and image resolution features - Audio support - Analysis tools - Version guard 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
402 B
Python
15 lines
402 B
Python
from facefusion import translator
|
|
from facefusion.locals import LOCALS
|
|
|
|
|
|
def test_load() -> None:
|
|
translator.load(LOCALS, __name__)
|
|
|
|
assert __name__ in translator.LOCAL_POOL_SET
|
|
|
|
|
|
def test_get() -> None:
|
|
assert translator.get('conda_not_activated') == 'conda is not activated'
|
|
assert translator.get('help.skip_conda') == 'skip the conda environment check'
|
|
assert translator.get('invalid') is None
|