Skip to content

Comment on Ask HN: What features do you want in your AI powered note-taking app?

Comments

It would be cool if raw text could be parsed into structured data. Something like "Yesterday at 6pm, I took a flight from MIA to LAX airport on Delta" could be parsed into:

  {
    "date": "2020-10-09T06:00:00-0800",
    "action": "flight",
    "destination": {
      "iataCode": "LAX",
      "name": "Los Angeles International Airport"
    },
    "origin": {
      "iataCode": "MIA",
      "name": "Miami International Airport"
    },
    "airline": {
      "iataCode": "DL",
      "name": "Delta",
      "url": "https://www.delta.com"
    }
  }
even better would be to parse it into schema.org entities

How would you use this information?

i would like to be able to search it by attribute, like "find me all flights I took on Delta" or "How many flights did I take to Miami last year"

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.