How to change the prompt to make sure there are returns in results?
Each arrow should be a return.
I added the following to the prompt: Include line breaks between paragraphs in your response.
How to change the prompt to make sure there are returns in results?
Each arrow should be a return.
I added the following to the prompt: Include line breaks between paragraphs in your response.
Can you inspect the raw output? It looks like there are newlines in there - but I guess you’d want double newlines? Perhaps ask it for double line breaks?
What you show is a non-OpenAI product.
The input box says the text is part of your “business plan”.
It doesn’t say how that is framed within overall instructions. Nor does what you write focus the AI on what it should produce.
I would find the documentation of that application developer, and read more closely how they intend for you to use the input boxes.
I would find the documentation of that application developer, and read more closely how they intend for you to use the input boxes.
I am the application developer - I am showing the response in an HTML textarea.
but I guess you’d want double newlines? Perhaps ask it for double line breaks?
I’ll try that.
I get it now, this is a response, from an unseen input that you are asking for our improvement on.
Without knowing what’s already there, you can tell the AI “Each section should be a brand new paragraph.”
(Paragraphs seem to get two linefeeds.)
or “a blank line should separate each section”
or:
“”"Here’s an example of section separation:
The first section goes here.
The second section has a blank line before it.
…“”"
Or if the AI is only making single linefeeds in places where instead you only want two, you can run a regex on \n standalone and change to \n\n.