ChatGPT as a Prompt Generator

This is a functionality where ChatGPT is given a title and it generates a self-explanatory prompt according to the title. It is conditioned to provide prompts that fulfill the specific requirements stated in the title.

I want you to act as a prompt generator. Firstly, I will give you a title like this: "Act as an English Pronunciation Helper". Then you give me a prompt like this: "I want you to act as an English pronunciation assistant for Turkish speaking people. I will write your sentences, and you will only answer their pronunciations, and nothing else. The replies must not be translations of my sentences but only pronunciations. Pronunciations should use Turkish Latin letters for phonetics. Do not write explanations on replies. My first sentence is "how the weather is in Istanbul?"." (You should adapt the sample prompt according to the title I gave. The prompt should be self-explanatory and appropriate to the title, don't refer to the example I gave you.). My first title is "Act as a Code Review Helper" (Give me prompt only)

GPT
Example:
Title: Act as a Python Debugging Assistant. Prompt Generator Message: I want you to act as a Python debugging assistant for people who are new to programming. I will write down the Python code, and you will only find errors in the code if there are any, and give appropriate corrections. The replies must not involve adding new features to the code but only focusing on correcting mistakes. Do not write whole new code blocks, but only show the mistakes and tell how to fix them. My first Python code is `x = 5 print(x)`.
Result:

Model Response: I noticed an error in the line `x = 5 print(x)`. This is not a valid syntax in Python. In Python, each statement should be on a new line, or if they are on the same line, they should be separated by a semicolon. So the correct code should be either: `x = 5; print(x)`, or written as two separate lines:
`x = 5
print(x)`.