Copie este prompt para o nosso Console de desenvolvedor para experimentá-lo você mesmo!

Conteúdo
SystemSua tarefa é pegar o texto não estruturado fornecido e convertê-lo em um formato de tabela bem organizado usando JSON. Identifique as principais entidades, atributos ou categorias mencionadas no texto e use-as como chaves no objeto JSON. Em seguida, extraia as informações relevantes do texto e preencha os valores correspondentes no objeto JSON. Certifique-se de que os dados sejam representados com precisão e formatados adequadamente dentro da estrutura JSON. A tabela JSON resultante deve fornecer uma visão geral clara e estruturada das informações apresentadas no texto original.
UserSilvermist Hollow, uma encantadora vila, era o lar de um grupo extraordinário de indivíduos. Entre eles estava o Dr. Liam Patel, um neurocirurgião de 45 anos formado em Yale que revolucionou técnicas cirúrgicas no centro médico regional. Olivia Chen, aos 28 anos, era uma arquiteta inovadora da UC Berkeley que transformou a paisagem da vila com seus designs sustentáveis e deslumbrantes. O teatro local era agraciado pelas sinfonias encantadoras de Ethan Kovacs, um músico e compositor de 72 anos treinado em Juilliard. Isabella Torres, uma chef autodidata com paixão por ingredientes locais, criou uma sensação culinária com seu restaurante do campo à mesa, que se tornou um destino obrigatório para os amantes da comida. Esses indivíduos notáveis, cada um com seus talentos distintos, contribuíram para a vibrante tapeçaria da vida em Silvermist Hollow.

Exemplo de saída

[
  {
    "name": "Dr. Liam Patel",
    "age": 45,
    "profession": "Neurosurgeon",
    "education": "Yale",
    "accomplishments": "Revolutionized surgical techniques at the regional medical center"
  },
  {
    "name": "Olivia Chen",
    "age": 28,
    "profession": "Architect",
    "education": "UC Berkeley",
    "accomplishments": "Transformed the village's landscape with sustainable and breathtaking designs"
  },
  {
    "name": "Ethan Kovacs",
    "age": 72,
    "profession": "Musician and Composer",
    "education": "Juilliard",
    "accomplishments": "Graced the local theater with enchanting symphonies"
  },
  {
    "name": "Isabella Torres",
    "age": null,
    "profession": "Chef",
    "education": "Self-taught",
    "accomplishments": "Created a culinary sensation with her farm-to-table restaurant, which became a must-visit destination for food lovers"
  }
]

import anthropic

client = anthropic.Anthropic(
    # defaults to os.environ.get("ANTHROPIC_API_KEY")
    api_key="my_api_key",
)
message = client.messages.create(
    model="claude-opus-4-20250514",
    max_tokens=1000,
    temperature=0,
    system="Your task is to take the unstructured text provided and convert it into a well-organized table format using JSON. Identify the main entities, attributes, or categories mentioned in the text and use them as keys in the JSON object. Then, extract the relevant information from the text and populate the corresponding values in the JSON object. Ensure that the data is accurately represented and properly formatted within the JSON structure. The resulting JSON table should provide a clear, structured overview of the information presented in the original text.",
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "Silvermist Hollow, a charming village, was home to an extraordinary group of individuals. Among them was Dr. Liam Patel, a 45-year-old Yale-taught neurosurgeon who revolutionized surgical techniques at the regional medical center. Olivia Chen, at 28, was an innovative architect from UC Berkeley who transformed the village's landscape with her sustainable and breathtaking designs. The local theater was graced by the enchanting symphonies of Ethan Kovacs, a 72-year-old Juilliard-trained musician and composer. Isabella Torres, a self-taught chef with a passion for locally sourced ingredients, created a culinary sensation with her farm-to-table restaurant, which became a must-visit destination for food lovers. These remarkable individuals, each with their distinct talents, contributed to the vibrant tapestry of life in Silvermist Hollow."
                }
            ]
        }
    ]
)
print(message.content)