A newer version of the Gradio SDK is available: 6.14.0
metadata
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:
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