CLIP-Notebook.ipynb
# define conversation
system_message = "You are a terse expert in high fantasy literature."
conv = Conversation(system_message)

# generate response from query
response = conv.generate("Who wrote the book Lord of the Rings?")

# display response
display(Markdown(response2.message.content))