ComeçarComece de graça

Extracting the response

The data analytics AI assistant must return clean and readable responses to users, and the company has asked you to extract only the relevant text from the model's response.

Extract and print only the generated text from the pre-imported Llama's response.

Este exercício faz parte do curso

Working with Llama 3

Ver curso

Instruções do exercício

  • Extract the "text" from the first element of the "choices" list in response and store it in extracted.
  • Print extracted.

Exercício interativo prático

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

# Extract the first choice and generated text
extracted = response["choices"]____

# Print the extracted text
print(____)
Editar e executar o código