No world without AI
The whole world has become a testbed for OpenAI chatGpt, and a myriad of questions gets answered by the AI platform. So much that we ask for practical suggestions, write code, language for documentation, poems and what not. I even dared to ask suggestions from ChatGpt on what to paint on canvas on a rainy day (yes the downpour in Bay Area does not seem to end). Then used the ChatGpt answers to get several digital art samples via the Dall E 2 interface! All that is fine – however it is also essential for us humans to maintain some intelligence, lest machines take over the world π
A Different Take
I decided to do something different than asking ChatGpt for answers. I asked ChatGpt to ask me questions, to sharpen my own intelligence and I need that session everyday. With help from ChatGpt I asked it to write a python program to run itself. The work – “generate 10 intelligent questions in Technology for me”. I will place the python program on a cron job and run it every morning. Here is the code ChatGpt generated and used the text-davinci-002 model to generate intelligent questions.
import openai_secret_manager
# Authenticate to the OpenAI API
secrets = openai_secret_manager.get_secrets(“openai”)
print(secrets)
import openai
openai.api_key = secrets[“api_key”]
def generate_questions():
# Generate 10 questions
questions = []
for i in range(10):
response = openai.Completion.create(
model=”text-davinci-002″,
prompt=f”Please generate an intelligent question number {i+1}”,
temperature=0.5,
max_tokens=50
)
questions.append(response.get(“choices”)[0].get(“text”))
return questions
print(generate_questions())
You will need a few python packages to be installed to run OpenAI libraries and perhaps you can improve the code to suit your subjects of interest.
Keeping intelligent in the era of ChatGPT
Here is what I had asked ChatGPT to ask me – 10 intelligent questions on Technology. Below is what I got – QUIZ for you π
1. What is the difference between artificial intelligence and machine learning?
2. How does a blockchain work?
3. What is the purpose of a router in a computer network?
4. Can you explain the concept of cloud computing?
5. How does a search engine like Google retrieve and rank results?
6. What is the Internet of Things (IoT)?
7. What is the difference between a mobile operating system like iOS and Android?
8.How does a virtual reality headset function?
9. What is the difference between a 32-bit and 64-bit processor?
10. What is 5G technology and how does it differ from 4G?
Thatβs it for today.
If you are curious on the pictures Generative AI can create from Dall E 2 via ChatGpt suggestions for a rainy day scene in a metropolis, they were pretty impressive actually –

My next project- Having ChatGPT + Dall.E 2 build a script that can build a creative resume to increase university acceptance for students. Thanks for reading, hope you enjoyed!