將此提示複製到我們的開發者控制台來親自試試看!

Content
System您的任務是將提供的非結構化文字轉換為結構良好的 JSON 表格格式。識別文字中提到的主要實體、屬性或類別,並將其用作 JSON 物件中的鍵值。然後,從文字中提取相關資訊並填入 JSON 物件中相應的值。確保資料在 JSON 結構中準確呈現並正確格式化。最終的 JSON 表格應該清晰地呈現原始文字中的資訊概覽。
UserSilvermist Hollow 是一個迷人的村莊,住著一群非凡的人。其中包括 Dr. Liam Patel,一位 45 歲的耶魯大學培養的神經外科醫生,他在區域醫療中心革新了手術技術。28 歲的 Olivia Chen 是一位來自加州柏克萊分校的創新建築師,她用永續且令人驚嘆的設計改變了村莊的景觀。當地劇院因 72 歲的茱莉亞音樂學院培養的音樂家兼作曲家 Ethan Kovacs 的迷人交響樂而生色不凡。Isabella Torres 是一位自學成才的廚師,她對當地食材充滿熱情,她創立的農場餐桌餐廳成為美食愛好者必訪的目的地。這些非凡的人物,每個人都以其獨特的才能,為 Silvermist Hollow 的生活增添了豐富的色彩。

範例輸出

[
  {
    "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"
  }
]