Comment on The Perfect Solution
It allows you to add internal linebreaks.
Downside is that it includes your indentation whitespace. I doubt chatgpt would care about that, as I’d imagine it’d get discarded when it’s tokenized, but it’s good to keep in mind when using “”".
docs.python.org/3/library/textwrap.html#textwrap.…
That’s a pretty clean looking solution. There are a few others as well, but yours seems better, and it’s in the standard lib!
Enkers@sh.itjust.works 11 months ago
Downside is that it includes your indentation whitespace. I doubt chatgpt would care about that, as I’d imagine it’d get discarded when it’s tokenized, but it’s good to keep in mind when using “”".
ono@lemmy.ca 11 months ago
docs.python.org/3/library/textwrap.html#textwrap.…
Enkers@sh.itjust.works 11 months ago
That’s a pretty clean looking solution. There are a few others as well, but yours seems better, and it’s in the standard lib!