CoolFace
Apppublic

jkorstad/gameforge

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
0likes
App README

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

TypeModelLicense
ImagesFLUX.1-schnellApache 2.0
VideoLTX 2.3 TurboApache 2.0
3DTRELLIS.2MIT
VoiceMeloTTSMIT
MusicACE-StepApache 2.0
SFXTangoFluxApache 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