Skip to content

Commit 9b1973c

Browse files
authored
Update README.md
1 parent 6bfddb3 commit 9b1973c

File tree

1 file changed

+48
-1
lines changed

1 file changed

+48
-1
lines changed

README.md

+48-1
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,24 @@
2020
2121
BuilderGPT is an open source, free, AI-powered Minecraft structure generator. It was developed for minecraft map makers. It can generate structures in `*.schem` format and users can import them via worldedit, etc.
2222

23+
## GET YOUR FREE API KEY WITH GPT-4 ACCESS
24+
We are pleased to announce that SEC-API is offering a free apikey for users of programs developed by CubeGPT!
25+
This key has access to gpt-4-1106-preview and gpt-3.5-turbo-1106.
26+
27+
**Note that this key does not have access to models such as gpt-4-vision and gpt-4-turbo-preview and expires at any time.**
28+
29+
Get the key from [here](https://github.com/orgs/CubeGPT/discussions/1). You can use it in BuilderGPT.
30+
2331
## Partner
2432
[![](https://www.bisecthosting.com/partners/custom-banners/c37f58c7-c49b-414d-b53c-1a6e1b1cff71.webp)](https://bisecthosting.com/cubegpt)
2533

2634
## Features
2735

28-
- [x] Generate structures
36+
- [x] Generate structures directly
2937
- [x] Export generated structures to `*.schem` files
3038
- [ ] Export generated structures to OOC commands
39+
- [ ] **Advanced Mode** (Use Stable Diffusion/DALL-E to generate the design image and let `gpt-4-vision` generate the struture base on it.)
40+
- [ ] Preview generated structure
3141
- [ ] Edit structures
3242

3343
### Other projects of CubeGPT Team
@@ -38,6 +48,43 @@ BuilderGPT is an open source, free, AI-powered Minecraft structure generator. It
3848

3949
## How it works
4050

51+
### Advanced Mode
52+
After the user enters a requirement, the program uses `gpt-4-preview` to expand the details of the requirement and generate a specific solution. The program then uses the generated solution to generate a drawing tag using `gpt-4-preview`, and then calls Stable Diffusion WebUI or DALL-E to generate a design using the generated tag. The generated schematic is then given to `gpt-4-vision-preview` along with the optimized requirements to generate a `json` containing the content of the structure, for example:
53+
54+
```json
55+
{
56+
"materials": [
57+
"A: \"minecraft:air\"",
58+
"S: \"minecraft:stone\""
59+
],
60+
"structures": [
61+
{
62+
"floor": 0,
63+
"structure": "SSSSSSSS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSSSSSSSS"
64+
},
65+
{
66+
"floor": 1,
67+
"structure": "SSGGGGSS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSSSSSSSS"
68+
},
69+
{
70+
"floor": 2,
71+
"structure": "SSGGGGSS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSSSSSSSS"
72+
},
73+
{
74+
"floor": 3,
75+
"structure": "SSSSSSSS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSAAAAAAS\nSSSSSSSS"
76+
},
77+
{
78+
"floor": 4,
79+
"structure": "SSSSSSSS\nSSSSSSSS\nSSSSSSSS\nSSSSSSSS\nSSSSSSSS\nSSSSSSSS\nSSSSSSSS\nSSSSSSSS\nSSSSSSSS\nSSSSSSSS\n"
80+
}
81+
]
82+
}
83+
```
84+
The program then parses this `json` response and generates a `*.schem` file for the user to import the structure into the game.
85+
86+
87+
### Simple Mode
4188
After the user enters a requirement, the program causes `gpt-4-preview` to generate a `json` containing the content of the structure, for example:
4289
```json
4390
{

0 commit comments

Comments
 (0)