Views
No views yet
| 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 |
gradio.Server. You can call it programmatically:1from gradio_client import Client
2
3client = Client("jkorstad/gameforge")
4
5# Generate an image
6result = client.predict("/generate_image", {"prompt": "fantasy knight"})
7
8# Generate NPC voice
9result = client.predict("/generate_voice", {"text": "Welcome, traveler!"})
10
11# List all models
12result = client.predict("/registry_info")