Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,19 +1,36 @@
|
|
| 1 |
---
|
| 2 |
-
title: Text To 3D
|
| 3 |
emoji: 🎨
|
| 4 |
colorFrom: purple
|
| 5 |
colorTo: pink
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
# Text-to-3D Generator
|
| 11 |
|
| 12 |
-
A free, open-source AI-powered text-to-3D model generator.
|
| 13 |
|
| 14 |
## Features
|
| 15 |
-
- Natural language to 3D models
|
| 16 |
-
- Spell correction
|
| 17 |
-
- Context-aware refinements
|
| 18 |
-
- GLB and OBJ export
|
| 19 |
-
- 100% free, no API costs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Text To 3D Generator
|
| 3 |
emoji: 🎨
|
| 4 |
colorFrom: purple
|
| 5 |
colorTo: pink
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
| 8 |
+
app_port: 7860
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# Free Text-to-3D Generator API
|
| 12 |
|
| 13 |
+
A 100% free, open-source AI-powered text-to-3D model generator with no API costs.
|
| 14 |
|
| 15 |
## Features
|
| 16 |
+
- ✨ Natural language to 3D models
|
| 17 |
+
- 🔧 Spell correction and typo handling
|
| 18 |
+
- 🧠 Context-aware model refinements
|
| 19 |
+
- 📦 GLB and OBJ export formats
|
| 20 |
+
- 💰 100% free, no API costs
|
| 21 |
+
- 🚀 Fast procedural generation
|
| 22 |
+
|
| 23 |
+
## API Endpoints
|
| 24 |
+
|
| 25 |
+
- `GET /` - Health check
|
| 26 |
+
- `GET /health` - Health status
|
| 27 |
+
- `POST /generate` - Generate 3D model from text
|
| 28 |
+
- `POST /refine` - Refine existing model
|
| 29 |
+
- `GET /supported-shapes` - List supported shapes and colors
|
| 30 |
+
|
| 31 |
+
## Example Usage
|
| 32 |
+
|
| 33 |
+
```bash
|
| 34 |
+
curl -X POST "https://jainarham-text-to-3d.hf.space/generate" \
|
| 35 |
+
-H "Content-Type: application/json" \
|
| 36 |
+
-d '{"prompt": "Create a red cube"}'
|