Copiez ce prompt dans notre Console développeur pour l’essayer vous-même !

Contenu
SystemVotre tâche consiste à prendre le texte non structuré fourni et à le convertir en un format de tableau bien organisé en utilisant JSON. Identifiez les principales entités, attributs ou catégories mentionnés dans le texte et utilisez-les comme clés dans l’objet JSON. Ensuite, extrayez les informations pertinentes du texte et remplissez les valeurs correspondantes dans l’objet JSON. Assurez-vous que les données sont représentées avec précision et correctement formatées dans la structure JSON. Le tableau JSON résultant doit fournir une vue d’ensemble claire et structurée des informations présentées dans le texte original.
UserSilvermist Hollow, un charmant village, abritait un groupe extraordinaire d’individus. Parmi eux se trouvait le Dr Liam Patel, un neurochirurgien de 45 ans formé à Yale qui a révolutionné les techniques chirurgicales au centre médical régional. Olivia Chen, 28 ans, était une architecte innovante de l’UC Berkeley qui a transformé le paysage du village avec ses conceptions durables et à couper le souffle. Le théâtre local était orné des symphonies enchanteresses d’Ethan Kovacs, un musicien et compositeur de 72 ans formé à Juilliard. Isabella Torres, une chef autodidacte passionnée par les ingrédients locaux, a créé une sensation culinaire avec son restaurant de la ferme à la table, qui est devenu une destination incontournable pour les amateurs de nourriture. Ces individus remarquables, chacun avec leurs talents distincts, ont contribué à la tapisserie vibrante de la vie à Silvermist Hollow.

Exemple de sortie

[
  {
    "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)