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 ejercicio forma parte del curso
Working with Llama 3
Instrucciones del ejercicio
- Extract the
"text"from the first element of the"choices"list inresponseand store it inextracted. - Print
extracted.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Extract the first choice and generated text
extracted = response["choices"]____
# Print the extracted text
print(____)