summonscript
summonscript copied to clipboard
Research and demo speech-to-text using AI code generation
Using one of the few AI code generators, it should be fairly simple to take 1_tutorial to teach the AI, then dictate intent using regular English to produce SummonScript.
For example, someone would say:
"Create circle with radius of 1, move to 3 3 (which represents x: 3, y: 3), union with a box of length 1 on all sides"
Which would create:
circle(1).move([3, 3, 0]).union(box.exact([1, 1, 1]));