A proof of concept ProseCode - Sticky Shapes (powered by chatGPT)
This article introduces a proof-of-concept demonstration for a new programming paradigm called ProseCode, which utilizes natural language to make programming more accessible and understandable. The demo, named "Sticky Shapes", uses Python Tkinter for drawing and animations, and OpenAI's ChatGPT as the ProseCode interpreter. The concept aims to revolutionize programming by allowing users to create programs for various devices using natural language, bridging the gap between human thoughts and machine-executable code. The author encourages users to experiment with the application and share their drawings.
โThe description will be the programโ (Bill Gates)
As the author of the article exploring the potential of a new programming paradigm using natural language, I am excited to introduce you to a proof-of-concept demonstration for a ProseCode virtual machine called "Sticky Shapes". This concept aims to make programming more accessible and understandable to a broader audience, transcending cultural and linguistic barriers. All of this is made possible thanks to the advent of Artificial Intelligences capable of understanding natural language, such as GPT, for example.
Stemming from my belief in the imminent arrival of new ways to write computer programs using natural language, as echoed by Bill Gates' statement, "the description will be the program," Sticky Shapes showcases the practical application of this idea. The ProseCode virtual machine allows users to draw on a canvas using basic shapes and create simple animations, all through the power of natural language.
This demo serves as an introduction to the future of programming, where natural language bridges the gap between human thoughts and machine-executable code. Join me in exploring the possibilities of ProseCode and witness the transformation of programming as we know it.
The general idea behind ProseCode is that it could be used to create programs in natural language for all types of devices, such as: a robot, a computer (with all its applications and connected resources), an industrial manufacturing line, or any other system currently controlled by software. To demonstrate the concept, I intentionally chose a simple and playful system to implement.
This proof of concept, named "Sticky shapes" is implemented using Python Tkinter and drawing on a canvas. OpenAI's ChatGPT is used as the ProseCode interpreter: the description (sequence of prompts) expressed in natural language is translated into a portion of Python script that carries out the drawings and animations on the Tkinter canvas.
The Python script is provided to the user, which has educational value. However, it's clear that in the future this would no longer be necessary, just as we hardly ever look at the assembly code generated by a C++ compiler.
As an example, the animated image below is generated by ProseCode from the description (prompt):
ProseCode: What do you want me to draw?
User: "mountains and sun, a cloud crosses the scene"
Below is the Python script generated by ProseCode:
#ProseCode
# dessin des montagnes
canva.create_polygon(0, 600, 100, 400, 200, 600, fill='#a6a6a6', outline='#a6a6a6')
canva.create_polygon(100, 600, 200, 400, 300, 600, fill='#b3b3b3', outline='#b3b3b3')
canva.create_polygon(200, 600, 300, 400, 400, 600, fill='#c0c0c0', outline='#c0c0c0')
canva.create_polygon(300, 600, 400, 400, 500, 600, fill='#cccccc', outline='#cccccc')
canva.create_polygon(400, 600, 500, 400, 600, 600, fill='#d9d9d9', outline='#d9d9d9')
canva.create_polygon(500, 600, 600, 400, 700, 600, fill='#e6e6e6', outline='#e6e6e6')
canva.create_polygon(600, 600, 700, 400, 800, 600, fill='#f2f2f2', outline='#f2f2f2')
# dessin du soleil
canva.create_oval(50, 50, 150, 150, fill='#ffff00', outline='#ffff00')
canva.create_line(0, 100, 800, 100, width=2, fill='#ffff00')
canva.create_line(400, 0, 400, 800, width=2, fill='#ffff00')
canva.create_line(200, 200, 600, 600, width=2, fill='#ffff00')
canva.create_line(600, 200, 200, 600, width=2, fill='#ffff00')
# dessin du nuage
x, y = 0, 200
while not stop:
canva.delete('nuage')
canva.create_oval(x, y, x+100, y+50, fill='#ffffff', outline='#ffffff', tags='nuage')
canva.create_oval(x+50, y-25, x+150, y+25, fill='#ffffff', outline='#ffffff', tags='nuage')
canva.create_oval(x+100, y, x+200, y+50, fill='#ffffff', outline='#ffffff', tags='nuage')
fen.update()
x += 5
if x > 800:
x = 0
time.sleep(0.05)
#EndProse
Many more examples, some of which are quite amusing, can be seen in this video:
The source code is provided on this Hackster project page; please be tolerant as there are still some bugs and it's not optimized at all. This is a "quick and dirty" version, just sufficient to test the concept. Feel free to propose improved versions if you know how to do so.
Also, I invite you to experiment with this application, as you will see that it can be quite fun and often full of surprises. Feel free to share your drawings! (use the hashtag #ProseCodeSticky )
Ressources:- Interfacing ChatGPT with Python
- โThe description will be the programโ - discussion about the emergence of a new paradigm for programming using natural language.
Comments
Please log in or sign up to comment.