CoolFace
Apppublic

jkorstad/gameforge

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
0likes
README.md68 linesDownload Raw Back to root
1---2title: GameForge3emoji: ⚔️4colorFrom: purple5colorTo: blue6sdk: gradio7sdk_version: 6.10.08app_file: app.py9pinned: false10license: apache-2.011tags:12  - game-development13  - asset-generation14  - ai-pipeline15  - text-to-image16  - text-to-3d17  - text-to-video18  - text-to-speech19  - text-to-music20  - zerogpu21models:22  - black-forest-labs/FLUX.1-schnell23  - microsoft/TRELLIS.224  - myshell-ai/MeloTTS25short_description: "AI Game Asset Pipeline - Free open-source models"26---27 28# GameForge - AI Game Asset Pipeline29 30Generate production-ready game assets using best-in-class open-source AI models.31Images, video, 3D meshes, audio, voice, music -- all from text prompts.32 33**26 of 27 models are FREE** via Hugging Face ZeroGPU Spaces.34 35## Asset Types36 37| Type | Model | License |38|------|-------|---------|39| Images | FLUX.1-schnell | Apache 2.0 |40| Video | LTX 2.3 Turbo | Apache 2.0 |41| 3D | TRELLIS.2 | MIT |42| Voice | MeloTTS | MIT |43| Music | ACE-Step | Apache 2.0 |44| SFX | TangoFlux | Apache 2.0 |45 46## API47 48This Space exposes a REST API via `gradio.Server`. You can call it programmatically:49 50```python51from gradio_client import Client52 53client = Client("jkorstad/gameforge")54 55# Generate an image56result = client.predict("/generate_image", {"prompt": "fantasy knight"})57 58# Generate NPC voice59result = client.predict("/generate_voice", {"text": "Welcome, traveler!"})60 61# List all models62result = client.predict("/registry_info")63```64 65## License66 67Apache-2.068