Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,28 +1,41 @@
|
|
| 1 |
---
|
| 2 |
-
license: mit
|
| 3 |
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- deckergui
|
| 5 |
-
- agent-ecosystem
|
| 6 |
-
pretty_name: Code Generation & Reasoning Pairs
|
| 7 |
---
|
| 8 |
|
| 9 |
-
# Code
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
-
|
| 16 |
-
- **input**: model reasoning/plan
|
| 17 |
-
- **output**: file changes summary
|
| 18 |
-
- **language**: typescript|json|markdown
|
| 19 |
-
- **feature**: feature area
|
| 20 |
-
- **complexity**: low|medium|high
|
| 21 |
|
| 22 |
-
|
| 23 |
|
| 24 |
-
|
| 25 |
|
| 26 |
-
|
|
|
|
| 27 |
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
tags:
|
| 3 |
+
- dataset
|
| 4 |
+
- code-generation
|
| 5 |
+
- instruction-tuning
|
| 6 |
+
- typescript
|
| 7 |
- deckergui
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
+
# Code generation and reasoning pairs from DeckerGUI development sessions. Contains user instructions, context, and model-generated code for TypeScript, Markdown, and JSON.
|
| 11 |
|
| 12 |
+
## Dataset Details
|
| 13 |
|
| 14 |
+
- **Repository:** ctaxnagomi/deckergui-code-generation
|
| 15 |
+
- **License:** MIT
|
| 16 |
+
- **DeckerGUI Version:** v2.0.0
|
| 17 |
+
- **Created:** 2026-08-17
|
| 18 |
|
| 19 |
+
## Dataset Schema
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
+
See `metadata.json` for the full schema definition.
|
| 22 |
|
| 23 |
+
## Usage
|
| 24 |
|
| 25 |
+
```python
|
| 26 |
+
from datasets import load_dataset
|
| 27 |
|
| 28 |
+
ds = load_dataset("ctaxnagomi/deckergui-code-generation")
|
| 29 |
+
print(ds)
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## Citation
|
| 33 |
+
|
| 34 |
+
```bibtex
|
| 35 |
+
@software{deckergui_2026,
|
| 36 |
+
title={DeckerGUI: Vision-Centric Agentic Operating Architecture},
|
| 37 |
+
author={Wan Mohd Azizi bin Wan Hosen},
|
| 38 |
+
year={2026},
|
| 39 |
+
url={https://huggingface.co/ctaxnagomi/deckergui-code-generation}
|
| 40 |
+
}
|
| 41 |
+
```
|