i tried the new program - here are my results:
let me start with image generation (from screen2 of demo):
my prompt was
robot wearing grass skirt, green hills in background, in style of stained glass
not bad! it may have missed the grass skirt but the rendition is close enough to the prompt!
now here's my test for text generation:
my prompt was
tell me, in a poem, why I should learn Python
as you can see, it CAN do poems! that's because i picked Davinci for language model - it is more capable of conversational style than the Ada model - plus i set Informative to false (meaning "be a little creattive in your response"). the only problem is it dropped all the newlines (\n)! so the response came back with all text strung together and no breaks. i had to cut n paste the contents and hand edited it to split the lines at the right places - here's the resulting poem:
You: tell me, in a poem, why I should learn Python
AI: *A powerful language, Python you should learn
To unlock a world of programming to yearn
No need to worry, no need to stress
For Python is simple, easy, and best
It is all around, coding jobs galore
From web to data, it can explore
Whether starts fresh or already know
Python can take you far, for sure
Be it beginners or advanced coders
Python is ideal for all to ponder
The language of choice, to any age
A chance to code and will engage
also i had to change the design and replaced the original destination of the conversation from Label1 to TextBox2 because the label won't let me do cut-n-paste but textbox will.
overall, the demo reveals how easy it is to connect to OpenAI (GPT-3) but something needs to be done about those disappearing newlines!
get yourself an API key and start playing - in all the time i've been playing with demo here since it was released, i've only spent 10 cents!
thanks for the demo @gordonlu310 !
here's my version (with output set to a textbox instead of label)
myOpenAI.aia (118.3 KB)