LivePortrait
talking-head
avatar
real-time
conversational-ai
4d-avatar
eden-protocol
lip-sync
tts
asr
Instructions to use AIBRUH/eden-os with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LivePortrait
How to use AIBRUH/eden-os with LivePortrait:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
File size: 506 Bytes
0f6a0eb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | version: '3.8'
services:
eden-os:
build: .
ports:
- "7860:7860"
environment:
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
- HF_TOKEN=${HF_TOKEN}
- EDEN_HARDWARE_PROFILE=auto
- EDEN_LOG_LEVEL=INFO
volumes:
- ./models_cache:/app/models_cache
- ./templates:/app/templates
- ./data:/app/data
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
|