├── .env.sample ├── .gitignore ├── .vscode └── launch.json ├── LICENSE.md ├── README.md ├── aafactory ├── assets │ └── demo │ │ └── avatar.jpg ├── src │ ├── __init__.py │ ├── aafactory │ │ ├── __init__.py │ │ ├── act │ │ │ └── interface.py │ │ ├── avatar │ │ │ └── interface.py │ │ ├── chat │ │ │ └── interface.py │ │ ├── comfyui │ │ │ └── video.py │ │ ├── configuration.py │ │ ├── create_gradio_ui.py │ │ ├── database │ │ │ └── manage_db.py │ │ ├── fetcher │ │ │ └── fetching.py │ │ ├── main.py │ │ ├── prompts.py │ │ ├── react │ │ │ └── interface.py │ │ ├── schemas.py │ │ ├── settings.py │ │ ├── style.py │ │ └── utils │ │ │ ├── interface.py │ │ │ └── voice.py │ └── tests │ │ ├── test_chat │ │ ├── test_chat_interface.py │ │ └── test_mock_chat.py │ │ └── test_configuration.py └── workflows │ ├── audio_image_to_video_with_sonic.json │ └── text_to_speech_with_zonos.json ├── cloud_setup ├── joyvasa │ └── setup_joyvasa.sh ├── pyproject.toml ├── runpod_templates │ └── comfy_ui │ │ ├── 2025-04-26_11-26-04_snapshot.json │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── restore_snapshot.sh │ │ ├── server-requirements.txt │ │ └── start.sh ├── sonic │ ├── install_sonic.sh │ └── pyproject.toml ├── uv.lock └── zonos │ └── pyproject.toml ├── github_assets ├── hpi-logo-white.svg └── napoleon_example.png ├── poetry.lock └── pyproject.toml /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/README.md -------------------------------------------------------------------------------- /aafactory/assets/demo/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/assets/demo/avatar.jpg -------------------------------------------------------------------------------- /aafactory/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aafactory/src/aafactory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aafactory/src/aafactory/act/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/act/interface.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/avatar/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/avatar/interface.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/chat/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/chat/interface.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/comfyui/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/comfyui/video.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/configuration.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/create_gradio_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/create_gradio_ui.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/database/manage_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/database/manage_db.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/fetcher/fetching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/fetcher/fetching.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/main.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/prompts.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/react/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/react/interface.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/schemas.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/settings.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/style.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/utils/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/utils/interface.py -------------------------------------------------------------------------------- /aafactory/src/aafactory/utils/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/aafactory/utils/voice.py -------------------------------------------------------------------------------- /aafactory/src/tests/test_chat/test_chat_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/tests/test_chat/test_chat_interface.py -------------------------------------------------------------------------------- /aafactory/src/tests/test_chat/test_mock_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/tests/test_chat/test_mock_chat.py -------------------------------------------------------------------------------- /aafactory/src/tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/src/tests/test_configuration.py -------------------------------------------------------------------------------- /aafactory/workflows/audio_image_to_video_with_sonic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/workflows/audio_image_to_video_with_sonic.json -------------------------------------------------------------------------------- /aafactory/workflows/text_to_speech_with_zonos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/aafactory/workflows/text_to_speech_with_zonos.json -------------------------------------------------------------------------------- /cloud_setup/joyvasa/setup_joyvasa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/joyvasa/setup_joyvasa.sh -------------------------------------------------------------------------------- /cloud_setup/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/pyproject.toml -------------------------------------------------------------------------------- /cloud_setup/runpod_templates/comfy_ui/2025-04-26_11-26-04_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/runpod_templates/comfy_ui/2025-04-26_11-26-04_snapshot.json -------------------------------------------------------------------------------- /cloud_setup/runpod_templates/comfy_ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/runpod_templates/comfy_ui/Dockerfile -------------------------------------------------------------------------------- /cloud_setup/runpod_templates/comfy_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/runpod_templates/comfy_ui/README.md -------------------------------------------------------------------------------- /cloud_setup/runpod_templates/comfy_ui/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/runpod_templates/comfy_ui/docker-compose.yml -------------------------------------------------------------------------------- /cloud_setup/runpod_templates/comfy_ui/restore_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/runpod_templates/comfy_ui/restore_snapshot.sh -------------------------------------------------------------------------------- /cloud_setup/runpod_templates/comfy_ui/server-requirements.txt: -------------------------------------------------------------------------------- 1 | piexif==1.1.3 2 | segment_anything 3 | huggingface_hub -------------------------------------------------------------------------------- /cloud_setup/runpod_templates/comfy_ui/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/runpod_templates/comfy_ui/start.sh -------------------------------------------------------------------------------- /cloud_setup/sonic/install_sonic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/sonic/install_sonic.sh -------------------------------------------------------------------------------- /cloud_setup/sonic/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/sonic/pyproject.toml -------------------------------------------------------------------------------- /cloud_setup/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/uv.lock -------------------------------------------------------------------------------- /cloud_setup/zonos/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/cloud_setup/zonos/pyproject.toml -------------------------------------------------------------------------------- /github_assets/hpi-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/github_assets/hpi-logo-white.svg -------------------------------------------------------------------------------- /github_assets/napoleon_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/github_assets/napoleon_example.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AA-Factory/aafactory-prototype/HEAD/pyproject.toml --------------------------------------------------------------------------------