Skip to content

Commit

Permalink
Improved menu items with descriptions, closes #20
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Apr 9, 2024
1 parent bf3a67e commit b450972
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions datasette_extract/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,8 @@ async def inner():
return [
{
"href": datasette.urls.database(database) + "/-/extract",
"label": "Create table with extracted data",
"label": "Create table with AI extracted data",
"description": "Paste in text or an image to extract structured data",
}
]

Expand All @@ -472,7 +473,8 @@ async def inner():
return [
{
"href": datasette.urls.table(database, table) + "/-/extract",
"label": "Extract data into this table",
"label": "Extract data into this table with AI",
"description": "Paste in text or an image to extract structured data",
}
]

Expand Down

0 comments on commit b450972

Please sign in to comment.