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:
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