Streaming responses
Anatomy of a message
System prompts that control behavior
Prerequisites — what you should know before this track
Why pandas?
Read the code carefully
history = [] history.append({"role": "user", "content": "A"}) history.append({"role": "assistant", "content": "B"}) history.append({"role": "user", "content": "C"}) print(len(history))
What will the program print? Write here: