新增示例库逻辑

This commit is contained in:
puke
2025-11-03 17:44:33 +08:00
parent 6f114b61c7
commit ec395196cd
43 changed files with 2567 additions and 406 deletions

View File

@@ -0,0 +1,54 @@
# Architecture
Technical architecture overview of Pixelle-Video.
---
## Core Architecture
Pixelle-Video uses a layered architecture design:
- **Web Layer**: Streamlit Web interface
- **Service Layer**: Core business logic
- **ComfyUI Layer**: Image and TTS generation
---
## Main Components
### PixelleVideoCore
Core service class coordinating all sub-services.
### LLM Service
Responsible for calling large language models to generate scripts.
### Image Service
Responsible for calling ComfyUI to generate images.
### TTS Service
Responsible for calling ComfyUI to generate speech.
### Video Generator
Responsible for composing the final video.
---
## Tech Stack
- **Backend**: Python 3.10+, AsyncIO
- **Web**: Streamlit
- **AI**: OpenAI API, ComfyUI
- **Configuration**: YAML
- **Tools**: uv (package management)
---
## More Information
Detailed architecture documentation coming soon.