ComenzarEmpieza gratis

Extracting Claude's response

At the hackathon, your teammate needs the exact reply text to wire into the React front-end. Show them how to slice the response object and print just Claude’s answer, so that it can be displayed on your app.

Este ejercicio forma parte del curso

Introduction to Claude Models

Ver curso

Instrucciones del ejercicio

  • Extract and print Claude's response from the given response object.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

from anthropic import Anthropic

client = Anthropic(api_key="datacamp-token", base_url=url)

response = client.messages.create(
    model="claude-3-7-sonnet-latest",
    max_tokens=150,
    messages=[
        {"role": "user", "content": "How does Claude work? Reply in one sentence."}
    ])
# Extract and print Claude's response
print(____)
Editar y ejecutar código