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 exercicio faz parte do curso
Introduction to Claude Models
Instruções do exercicio
- Extract and print Claude's response from the given
responseobject.
exercicio interativo prático
Tente este exercicio completando este código de exemplo.
from anthropic import Anthropic
client = Anthropic(api_key="datacamp-token", base_url=url)
response = client.messages.create(
model="claude-sonnet-4-6",
max_tokens=150,
messages=[
{"role": "user", "content": "How does Claude work? Reply in one sentence."}
])
# Extract and print Claude's response
print(____)