ComeçarComece de graça

Multi-turn conversations

Let's extend the travel chatbot to allow users to respond to the model's initial recommendation. You'll again use the Conversation class, but this time, you'll make repeated calls to the model to see how the model handles previous information.

As a reminder, here are the methods from the Conversation class:

  • __init__(self, llm: Llama, system_prompt='', history=[])
  • create_completion(self, user_prompt='')

Este exercício faz parte do curso

Working with Llama 3

Ver curso

Instruções do exercício

  • Ask for an initial travel recommendation, and provide a follow-up request after the first model response.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

chatbot = Conversation(llm, system_prompt="You are a travel expert that recommends a travel destination based on a prompt. Return the location name only as 'City, Country'.")

# Ask for the initial travel recommendation
first_recommendation = chatbot.____("Recommend a Spanish-speaking city.")
print(first_recommendation)

# Add an additional request to update the recommendation
second_recommendation = chatbot.____("A different city in the same country")
print(second_recommendation)
Editar e executar o código