summonscript icon indicating copy to clipboard operation
summonscript copied to clipboard

Research and demo speech-to-text using AI code generation

Open lf94 opened this issue 2 years ago • 0 comments

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]));

lf94 avatar Oct 18 '23 03:10 lf94