feat: add API process functionality

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>
This commit is contained in:
henryruhs
2025-12-20 14:35:07 +01:00
co-authored by Claude
parent bed330f701
commit 423fee9d7f
82 changed files with 3424 additions and 806 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
from facefusion import translator
from facefusion.locales import LOCALES
from facefusion.locals import LOCALS
def test_load() -> None:
translator.load(LOCALES, __name__)
translator.load(LOCALS, __name__)
assert __name__ in translator.LOCALE_POOL_SET
assert __name__ in translator.LOCAL_POOL_SET
def test_get() -> None: