Official Python SDK for Monster Gaming — AI-powered game development platform
Project description
Monster Gaming SDK for Python
Official Python client for Monster Gaming — an AI-powered game development platform for Unreal Engine, Unity, Godot, and bespoke engines.
Installation
pip install monstergaming
Quick Start
from monstergaming import MonsterGaming
client = MonsterGaming(api_key="mg_your_api_key")
response = client.chat.completions.create(
model="monster-gpt",
messages=[
{"role": "user", "content": "Generate a UE5 C++ character controller with double jump"},
],
)
print(response["choices"][0]["message"]["content"])
Monster-GPT
monster-gpt is Monster Gaming's flagship model. It auto-detects your game engine and routes your query to a specialist agent — shader programming, networking, animation, level design, QA, and 25+ other disciplines.
response = client.chat.completions.create(
model="monster-gpt",
messages=[
{"role": "system", "content": "Engine: Unity 6. Language: C#."},
{"role": "user", "content": "Implement object pooling for projectiles"},
],
)
Available Models
models = client.models.list()
for model in models["data"]:
print(model["id"])
Budget models (Free tier): monster-gpt, claude-haiku, deepseek-chat, codestral, gemini-3-flash
Standard models (Starter+): claude-sonnet, gpt-4o, gemini-3.1-pro, mistral-large
Premium models (Pro+): claude-opus, o3, gpt-5.4
Pricing
Free tier available — no credit card required. See monstergaming.ai/pricing for details.
Documentation
Full documentation at monstergaming.ai/quickstart.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file monstergaming-0.1.0.tar.gz.
File metadata
- Download URL: monstergaming-0.1.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a9eccdccadf46b035780014204cc8e45206455d2930fa281e6a311db941843c
|
|
| MD5 |
1cc001ce473114d587538fc8f45114e9
|
|
| BLAKE2b-256 |
a905ae25f3dd158f0faa96696a7cce4935a5a361d9b7ee1d946bb424e8510461
|
File details
Details for the file monstergaming-0.1.0-py3-none-any.whl.
File metadata
- Download URL: monstergaming-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57e74fb5caaeac279f998a41dc6b8132b4431f61f438b792f328de4d56873d79
|
|
| MD5 |
5f70cf3ec4e0ef31b5e9698a7994e0a1
|
|
| BLAKE2b-256 |
6665c3b16d91eebf98162def658a06523789283136c403bbbded665a74fbd832
|