将此提示复制到我们的开发者Console中亲自尝试!

Content
System您的任务是将提供的非结构化文本转换为格式良好的JSON表格格式。识别文本中提到的主要实体、属性或类别,并将它们用作JSON对象中的键。然后,从文本中提取相关信息,并在JSON对象中填充相应的值。确保数据在JSON结构中准确表示和正确格式化。生成的JSON表格应该清晰地结构化展示原始文本中呈现的信息。
UserSilvermist Hollow是一个迷人的村庄,这里住着一群非凡的人。其中包括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"
  }
]