output = client.completions.create(
model="gpt-3.5-turbo-instruct",
prompt="List the days of the week: ",
stop = "Saturday", #put this in for fun
print(output.choices[0].text)
Note these print parameters are specific to this particular object's structure. (I think JSON but I'm a newbie.)
Original below
--------
This was a bit of a revelation. I don't know Python but I've been working through a ChatGPT / LLM tutorial using Visual Studio Code and a Juypter Notebook on macOS. In a Jupyter cell the output renders below the cell and it looks like this:
Completion(id='cmpl-....', choices=[CompletionChoice(finish_reason='stop', index=0, logprobs=None, text='1...
All in one unreadable line with \n as a paragraph deliver and no line wrap.
I asked ChatGPT 4 to help. Over a series of interactions I tried different things and got various error messages I passed to ChatGPT 4. In turn it analyzed my error message and suggested fixes.
This is what I ended up with in about 15 minutes, here added to a cell that ran a simple prompt query
from IPython.display import display, HTML
output = client.completions.create(
model="gpt-3.5-turbo-instruct",
prompt="write me a poem",
max_tokens=100,
n=3
)
text_content = output.choices[0].text if output.choices else ""
html_output = text_content.replace('\n', '<br>')
display(HTML(html_output))
This is what the output looks like now (the poetry is greeting card quality and mildly painful):
A poem, a weave of words and rhyme
A tapestry of thoughts and time
A magic spell from the poet's pen
A story of love, of loss, of when
The stars above, they guide my hand
As I write of distant lands
Of fiery sunsets and ocean tides
Of moments we hold and let slip by ...
[Adolescent poetry truncated]
This screenshot shows it best ...
We are in a new world.