File size: 1,461 Bytes
f0da9c5 a185655 f0da9c5 95af85c f0da9c5 a185655 f0da9c5 a185655 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | ---
title: GameForge
emoji: ⚔️
colorFrom: purple
colorTo: blue
sdk: gradio
sdk_version: 6.10.0
app_file: app.py
pinned: false
license: apache-2.0
tags:
- game-development
- asset-generation
- ai-pipeline
- text-to-image
- text-to-3d
- text-to-video
- text-to-speech
- text-to-music
- zerogpu
models:
- black-forest-labs/FLUX.1-schnell
- microsoft/TRELLIS.2
- myshell-ai/MeloTTS
short_description: "AI Game Asset Pipeline - Free open-source models"
---
# GameForge - AI Game Asset Pipeline
Generate production-ready game assets using best-in-class open-source AI models.
Images, video, 3D meshes, audio, voice, music -- all from text prompts.
**26 of 27 models are FREE** via Hugging Face ZeroGPU Spaces.
## Asset Types
| Type | Model | License |
|------|-------|---------|
| Images | FLUX.1-schnell | Apache 2.0 |
| Video | LTX 2.3 Turbo | Apache 2.0 |
| 3D | TRELLIS.2 | MIT |
| Voice | MeloTTS | MIT |
| Music | ACE-Step | Apache 2.0 |
| SFX | TangoFlux | Apache 2.0 |
## API
This Space exposes a REST API via `gradio.Server`. You can call it programmatically:
```python
from gradio_client import Client
client = Client("jkorstad/gameforge")
# Generate an image
result = client.predict("/generate_image", {"prompt": "fantasy knight"})
# Generate NPC voice
result = client.predict("/generate_voice", {"text": "Welcome, traveler!"})
# List all models
result = client.predict("/registry_info")
```
## License
Apache-2.0
|