{"id":"770e2003-c532-46ca-a952-f7f9a08c841e","shortId":"CFF5mV","kind":"skill","title":"hugging-face-papers","tagline":"Read and analyze Hugging Face paper pages or arXiv papers with markdown and papers API metadata.","description":"# Hugging Face Paper Pages\n\nHugging Face Paper pages (hf.co/papers) is a platform built on top of arXiv (arxiv.org), specifically for research papers in the field of artificial intelligence (AI) and computer science. Hugging Face users can submit their paper at hf.co/papers/submit, which features it on the Daily Papers feed (hf.co/papers). Each day, users can upvote papers and comment on papers. Each paper page allows authors to:\n- claim their paper (by clicking their name on the `authors` field). This makes the paper page appear on their Hugging Face profile.\n- link the associated model checkpoints, datasets and Spaces by including the HF paper or arXiv URL in the model card, dataset card or README of the Space\n- link the Github repository and/or project page URLs\n- link the HF organization. This also makes the paper page appear on the Hugging Face organization page.\n\nWhenever someone mentions a HF paper or arXiv abstract/PDF URL in a model card, dataset card or README of a Space repository, the paper will be automatically indexed. Note that not all papers indexed on Hugging Face are also submitted to daily papers. The latter is more a manner of promoting a research paper. Papers can only be submitted to daily papers up until 14 days after their publication date on arXiv.\n\nThe Hugging Face team has built an easy-to-use API to interact with paper pages. Content of the papers can be fetched as markdown, or structured metadata can be returned such as author names, linked models/datasets/spaces, linked Github repo and project page.\n\n## When to Use\n- User shares a Hugging Face paper page URL (e.g. `https://huggingface.co/papers/2602.08025`)\n- User shares a Hugging Face markdown paper page URL (e.g. `https://huggingface.co/papers/2602.08025.md`)\n- User shares an arXiv URL (e.g. `https://arxiv.org/abs/2602.08025` or  `https://arxiv.org/pdf/2602.08025`)\n- User mentions a arXiv ID (e.g. `2602.08025`)\n- User asks you to summarize, explain, or analyze an AI research paper\n\n## Parsing the paper ID\n\nIt's recommended to parse the paper ID (arXiv ID) from whatever the user provides:\n\n| Input | Paper ID |\n| --- | --- |\n| `https://huggingface.co/papers/2602.08025` | `2602.08025` |\n| `https://huggingface.co/papers/2602.08025.md` | `2602.08025` |\n| `https://arxiv.org/abs/2602.08025` | `2602.08025` |\n| `https://arxiv.org/pdf/2602.08025` | `2602.08025` |\n| `2602.08025v1` | `2602.08025v1` |\n| `2602.08025` | `2602.08025` |\n\nThis allows you to provide the paper ID into any of the hub API endpoints mentioned below.\n\n### Fetch the paper page as markdown\n\nThe content of a paper can be fetched as markdown like so:\n\n```bash\ncurl -s \"https://huggingface.co/papers/{PAPER_ID}.md\"\n```\n\nThis should return the Hugging Face paper page as markdown. This relies on the HTML version of the paper at https://arxiv.org/html/{PAPER_ID}.\n\nThere are 2 exceptions:\n- Not all arXiv papers have an HTML version. If the HTML version of the paper does not exist, then the content falls back to the HTML of the Hugging Face paper page.\n- If it results in a 404, it means the paper is not yet indexed on hf.co/papers. See [Error handling](#error-handling) for info.\n\nAlternatively, you can request markdown from the normal paper page URL, like so:\n\n```bash\ncurl -s -H \"Accept: text/markdown\" \"https://huggingface.co/papers/{PAPER_ID}\"\n```\n\n### Paper Pages API Endpoints\n\nAll endpoints use the base URL `https://huggingface.co`.\n\n#### Get structured metadata\n\nFetch the paper metadata as JSON using the Hugging Face REST API:\n\n```bash\ncurl -s \"https://huggingface.co/api/papers/{PAPER_ID}\"\n```\n\nThis returns structured metadata that can include:\n\n- authors (names and Hugging Face usernames, in case they have claimed the paper)\n- media URLs (uploaded when submitting the paper to Daily Papers)\n- summary (abstract) and AI-generated summary\n- project page and GitHub repository\n- organization and engagement metadata (number of upvotes)\n\nTo find models linked to the paper, use:\n\n```bash\ncurl https://huggingface.co/api/models?filter=arxiv:{PAPER_ID}\n```\n\nTo find datasets linked to the paper, use:\n\n```bash\ncurl https://huggingface.co/api/datasets?filter=arxiv:{PAPER_ID}\n```\n\nTo find spaces linked to the paper, use:\n\n```bash\ncurl https://huggingface.co/api/spaces?filter=arxiv:{PAPER_ID}\n```\n\n#### Claim paper authorship\n\nClaim authorship of a paper for a Hugging Face user:\n\n```bash\ncurl \"https://huggingface.co/api/settings/papers/claim\" \\\n  --request POST \\\n  --header \"Content-Type: application/json\" \\\n  --header \"Authorization: Bearer $HF_TOKEN\" \\\n  --data '{\n    \"paperId\": \"{PAPER_ID}\",\n    \"claimAuthorId\": \"{AUTHOR_ENTRY_ID}\",\n    \"targetUserId\": \"{USER_ID}\"\n  }'\n```\n\n- Endpoint: `POST /api/settings/papers/claim`\n- Body:\n  - `paperId` (string, required): arXiv paper identifier being claimed\n  - `claimAuthorId` (string): author entry on the paper being claimed, 24-char hex ID\n  - `targetUserId` (string): HF user who should receive the claim, 24-char hex ID\n- Response: paper authorship claim result, including the claimed paper ID\n\n#### Get daily papers\n\nFetch the Daily Papers feed:\n\n```bash\ncurl -s -H \"Authorization: Bearer $HF_TOKEN\" \\\n  \"https://huggingface.co/api/daily_papers?p=0&limit=20&date=2017-07-21&sort=publishedAt\"\n```\n\n- Endpoint: `GET /api/daily_papers`\n- Query parameters:\n  - `p` (integer): page number\n  - `limit` (integer): number of results, between 1 and 100\n  - `date` (string): RFC 3339 full-date, for example `2017-07-21`\n  - `week` (string): ISO week, for example `2024-W03`\n  - `month` (string): month value, for example `2024-01`\n  - `submitter` (string): filter by submitter\n  - `sort` (enum): `publishedAt` or `trending`\n- Response: list of daily papers\n\n#### List papers\n\nList arXiv papers sorted by published date:\n\n```bash\ncurl -s -H \"Authorization: Bearer $HF_TOKEN\" \\\n  \"https://huggingface.co/api/papers?cursor={CURSOR}&limit=20\"\n```\n\n- Endpoint: `GET /api/papers`\n- Query parameters:\n  - `cursor` (string): pagination cursor\n  - `limit` (integer): number of results, between 1 and 100\n- Response: list of papers\n\n#### Search papers\n\nPerform hybrid semantic and full-text search on papers:\n\n```bash\ncurl -s -H \"Authorization: Bearer $HF_TOKEN\" \\\n  \"https://huggingface.co/api/papers/search?q=vision+language&limit=20\"\n```\n\nThis searches over the paper title, authors, and content.\n\n- Endpoint: `GET /api/papers/search`\n- Query parameters:\n  - `q` (string): search query, max length 250\n  - `limit` (integer): number of results, between 1 and 120\n- Response: matching papers\n\n#### Index a paper\n\nInsert a paper from arXiv by ID. If the paper is already indexed, only its authors can re-index it:\n\n```bash\ncurl \"https://huggingface.co/api/papers/index\" \\\n  --request POST \\\n  --header \"Content-Type: application/json\" \\\n  --header \"Authorization: Bearer $HF_TOKEN\" \\\n  --data '{\n    \"arxivId\": \"{ARXIV_ID}\"\n  }'\n```\n\n- Endpoint: `POST /api/papers/index`\n- Body:\n  - `arxivId` (string, required): arXiv ID to index, for example `2301.00001`\n- Pattern: `^\\d{4}\\.\\d{4,5}$`\n- Response: empty JSON object on success\n\n#### Update paper links\n\nUpdate the project page, GitHub repository, or submitting organization for a paper. The requester must be the paper author, the Daily Papers submitter, or a papers admin:\n\n```bash\ncurl \"https://huggingface.co/api/papers/{PAPER_OBJECT_ID}/links\" \\\n  --request POST \\\n  --header \"Content-Type: application/json\" \\\n  --header \"Authorization: Bearer $HF_TOKEN\" \\\n  --data '{\n    \"projectPage\": \"https://example.com\",\n    \"githubRepo\": \"https://github.com/org/repo\",\n    \"organizationId\": \"{ORGANIZATION_ID}\"\n  }'\n```\n\n- Endpoint: `POST /api/papers/{paperId}/links`\n- Path parameters:\n  - `paperId` (string, required): Hugging Face paper object ID\n- Body:\n  - `githubRepo` (string, nullable): GitHub repository URL\n  - `organizationId` (string, nullable): organization ID, 24-char hex ID\n  - `projectPage` (string, nullable): project page URL\n- Response: empty JSON object on success\n\n## Error Handling\n\n- **404 on `https://huggingface.co/papers/{PAPER_ID}` or `md` endpoint**: the paper is not indexed on Hugging Face paper pages yet.\n- **404 on `/api/papers/{PAPER_ID}`**: the paper may not be indexed on Hugging Face paper pages yet.\n- **Paper ID not found**: verify the extracted arXiv ID, including any version suffix\n\n### Fallbacks\n\nIf the Hugging Face paper page does not contain enough detail for the user's question:\n\n- Check the regular paper page at `https://huggingface.co/papers/{PAPER_ID}`\n- Fall back to the arXiv page or PDF for the original source:\n  - `https://arxiv.org/abs/{PAPER_ID}`\n  - `https://arxiv.org/pdf/{PAPER_ID}`\n\n## Notes\n\n- No authentication is required for public paper pages.\n- Write endpoints such as claim authorship, index paper, and update paper links require `Authorization: Bearer $HF_TOKEN`.\n- Prefer the `.md` endpoint for reliable machine-readable output.\n- Prefer `/api/papers/{PAPER_ID}` when you need structured JSON fields instead of page markdown.\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.","tags":["hugging","face","papers","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding"],"capabilities":["skill","source-sickn33","skill-hugging-face-papers","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/hugging-face-papers","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34768 github stars · SKILL.md body (9,299 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-23T18:51:29.967Z","embedding":null,"createdAt":"2026-04-18T21:38:48.958Z","updatedAt":"2026-04-23T18:51:29.967Z","lastSeenAt":"2026-04-23T18:51:29.967Z","tsv":"'-01':823 '-07':806 '-21':807 '/abs/':1210 '/abs/2602.08025':319,375 '/api/daily_papers':780 '/api/daily_papers?p=0&limit=20&date=2017-07-21&sort=publishedat':777 '/api/datasets?filter=arxiv:':652 '/api/models?filter=arxiv:':637 '/api/papers':864,1074,1140,1255 '/api/papers/':573,1045 '/api/papers/index':968,987 '/api/papers/search':918 '/api/papers/search?q=vision+language&limit=20':906 '/api/papers?cursor=':858 '/api/settings/papers/claim':687,713 '/api/spaces?filter=arxiv:':667 '/html/':453 '/links':1049,1076 '/org/repo':1068 '/papers)':31 '/papers).':76 '/papers.':509 '/papers/':427,539,1121,1193 '/papers/2602.08025':297,367 '/papers/2602.08025.md':310,371 '/papers/submit,':65 '/pdf/':1215 '/pdf/2602.08025':323,379 '1':793,877,934 '100':795,879 '120':936 '14':231 '2':458 '20':861 '2017':805 '2024':814,822 '2301.00001':998 '24':732,745,1099 '250':927 '2602.08025':330,368,372,376,380,381,383,385,386 '3339':799 '4':1001,1003 '404':497,1117,1138 '5':1004 'abstract':607 'abstract/pdf':175 'accept':535 'admin':1040 'ai':51,340,610 'ai-gener':609 'allow':90,388 'alreadi':954 'also':155,205 'altern':518 'analyz':7,338 'and/or':146 'api':19,250,400,544,567 'appear':109,160 'application/json':694,975,1056 'artifici':49 'arxiv':13,39,129,174,238,314,327,355,462,718,842,947,983,992,1162,1200 'arxiv.org':40,318,322,374,378,452,1209,1214 'arxiv.org/abs/':1208 'arxiv.org/abs/2602.08025':317,373 'arxiv.org/html/':451 'arxiv.org/pdf/':1213 'arxiv.org/pdf/2602.08025':321,377 'arxivid':982,989 'ask':332,1301 'associ':117 'authent':1220 'author':91,102,273,583,696,705,725,771,852,900,913,958,977,1032,1058,1240 'authorship':672,674,751,1232 'automat':193 'back':482,1197 'base':550 'bash':422,531,568,633,648,663,683,767,848,896,964,1041 'bearer':697,772,853,901,978,1059,1241 'bodi':714,988,1087 'boundari':1309 'built':35,244 'card':134,136,180,182 'case':590 'char':733,746,1100 'check':1185 'checkpoint':119 'claim':93,593,670,673,722,731,744,752,756,1231 'claimauthorid':704,723 'clarif':1303 'clear':1276 'click':97 'comment':84 'comput':53 'contain':1177 'content':256,411,480,692,915,973,1054 'content-typ':691,972,1053 'criteria':1312 'curl':423,532,569,634,649,664,684,768,849,897,965,1042 'cursor':859,867,870 'd':1000,1002 'daili':71,208,227,604,760,764,837,1034 'data':700,981,1062 'dataset':120,135,181,642 'date':236,796,802,847 'day':78,232 'describ':1280 'detail':1179 'e.g':294,307,316,329 'easi':247 'easy-to-us':246 'empti':1006,1110 'endpoint':401,545,547,711,778,862,916,985,1072,1126,1228,1247 'engag':620 'enough':1178 'entri':706,726 'enum':830 'environ':1292 'environment-specif':1291 'error':511,514,1115 'error-handl':513 'exampl':804,813,821,997 'example.com':1064 'except':459 'exist':477 'expert':1297 'explain':336 'extract':1161 'face':3,9,22,26,56,113,164,203,241,290,302,436,489,565,587,681,1083,1134,1151,1172 'fall':481,1196 'fallback':1168 'featur':67 'feed':73,766 'fetch':262,404,417,556,762 'field':47,103,1263 'filter':826 'find':626,641,656 'found':1158 'full':801,891 'full-dat':800 'full-text':890 'generat':611 'get':553,759,779,863,917 'github':144,278,616,1018,1091 'github.com':1067 'github.com/org/repo':1066 'githubrepo':1065,1088 'h':534,770,851,899 'handl':512,515,1116 'header':690,695,971,976,1052,1057 'hex':734,747,1101 'hf':126,152,171,698,738,773,854,902,979,1060,1242 'hf.co':30,64,75,508 'hf.co/papers)':29 'hf.co/papers).':74 'hf.co/papers.':507 'hf.co/papers/submit,':63 'html':445,466,470,485 'hub':399 'hug':2,8,21,25,55,112,163,202,240,289,301,435,488,564,586,680,1082,1133,1150,1171 'hugging-face-pap':1 'huggingface.co':296,309,366,370,426,538,552,572,636,651,666,686,776,857,905,967,1044,1120,1192 'huggingface.co/api/daily_papers?p=0&limit=20&date=2017-07-21&sort=publishedat':775 'huggingface.co/api/datasets?filter=arxiv:':650 'huggingface.co/api/models?filter=arxiv:':635 'huggingface.co/api/papers/':571,1043 'huggingface.co/api/papers/index':966 'huggingface.co/api/papers/search?q=vision+language&limit=20':904 'huggingface.co/api/papers?cursor=':856 'huggingface.co/api/settings/papers/claim':685 'huggingface.co/api/spaces?filter=arxiv:':665 'huggingface.co/papers/':425,537,1119,1191 'huggingface.co/papers/2602.08025':295,365 'huggingface.co/papers/2602.08025.md':308,369 'hybrid':887 'id':328,346,354,356,364,394,429,455,541,575,639,654,669,703,707,710,735,748,758,949,984,993,1048,1071,1086,1098,1102,1123,1142,1156,1163,1195,1212,1217,1257 'identifi':720 'includ':124,582,754,1164 'index':194,200,505,940,955,962,995,1131,1148,1233 'info':517 'input':362,1306 'insert':943 'instead':1264 'integ':784,788,872,929 'intellig':50 'interact':252 'iso':810 'json':561,1007,1111,1262 'latter':211 'length':926 'like':420,529 'limit':787,860,871,928,1268 'link':115,142,150,275,277,628,643,658,1013,1238 'list':835,839,841,881 'machin':1251 'machine-read':1250 'make':105,156 'manner':215 'markdown':16,264,303,409,419,440,522,1267 'match':938,1277 'max':925 'may':1145 'md':430,1125,1246 'mean':499 'media':596 'mention':169,325,402 'metadata':20,267,555,559,579,621 'miss':1314 'model':118,133,179,627 'models/datasets/spaces':276 'month':816,818 'must':1028 'name':99,274,584 'need':1260 'normal':525 'note':195,1218 'nullabl':1090,1096,1105 'number':622,786,789,873,930 'object':1008,1047,1085,1112 'organ':153,165,618,1022,1070,1097 'organizationid':1069,1094 'origin':1206 'output':1253,1286 'p':783 'page':11,24,28,89,108,148,159,166,255,282,292,305,407,438,491,527,543,614,785,1017,1107,1136,1153,1174,1189,1201,1226,1266 'pagin':869 'paper':4,10,14,18,23,27,44,61,72,82,86,88,95,107,127,158,172,190,199,209,220,221,228,254,259,291,304,342,345,353,363,393,406,414,428,437,449,454,463,474,490,501,526,540,542,558,574,595,602,605,631,638,646,653,661,668,671,677,702,719,729,750,757,761,765,838,840,843,883,885,895,911,939,942,945,952,1012,1025,1031,1035,1039,1046,1084,1122,1128,1135,1141,1144,1152,1155,1173,1188,1194,1211,1216,1225,1234,1237,1256 'paperid':701,715,1075,1079 'paramet':782,866,920,1078 'pars':343,351 'path':1077 'pattern':999 'pdf':1203 'perform':886 'permiss':1307 'platform':34 'post':689,712,970,986,1051,1073 'prefer':1244,1254 'profil':114 'project':147,281,613,1016,1106 'projectpag':1063,1103 'promot':217 'provid':361,391 'public':235,1224 'publish':846 'publishedat':831 'q':921 'queri':781,865,919,924 'question':1184 're':961 're-index':960 'read':5 'readabl':1252 'readm':138,184 'receiv':742 'recommend':349 'regular':1187 'reli':442 'reliabl':1249 'repo':279 'repositori':145,188,617,1019,1092 'request':521,688,969,1027,1050 'requir':717,991,1081,1222,1239,1305 'research':43,219,341 'respons':749,834,880,937,1005,1109 'rest':566 'result':494,753,791,875,932 'return':270,433,577 'review':1298 'rfc':798 'safeti':1308 'scienc':54 'scope':1279 'search':884,893,908,923 'see':510 'semant':888 'share':287,299,312 'skill':1271 'skill-hugging-face-papers' 'someon':168 'sort':829,844 'sourc':1207 'source-sickn33' 'space':122,141,187,657 'specif':41,1293 'stop':1299 'string':716,724,737,797,809,817,825,868,922,990,1080,1089,1095,1104 'structur':266,554,578,1261 'submit':59,206,225,600,1021 'submitt':824,828,1036 'substitut':1289 'success':1010,1114,1311 'suffix':1167 'summar':335 'summari':606,612 'targetuserid':708,736 'task':1275 'team':242 'test':1295 'text':892 'text/markdown':536 'titl':912 'token':699,774,855,903,980,1061,1243 'top':37 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'treat':1284 'trend':833 'type':693,974,1055 'updat':1011,1014,1236 'upload':598 'upvot':81,624 'url':130,149,176,293,306,315,528,551,597,1093,1108 'use':249,285,548,562,632,647,662,1269 'user':57,79,286,298,311,324,331,360,682,709,739,1182 'usernam':588 'v1':382,384 'valid':1294 'valu':819 'verifi':1159 'version':446,467,471,1166 'w03':815 'week':808,811 'whatev':358 'whenev':167 'write':1227 'yet':504,1137,1154","prices":[{"id":"5c6726e4-4b2f-4ff4-adae-1e6ab023d6f9","listingId":"770e2003-c532-46ca-a952-f7f9a08c841e","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:38:48.958Z"}],"sources":[{"listingId":"770e2003-c532-46ca-a952-f7f9a08c841e","source":"github","sourceId":"sickn33/antigravity-awesome-skills/hugging-face-papers","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/hugging-face-papers","isPrimary":false,"firstSeenAt":"2026-04-18T21:38:48.958Z","lastSeenAt":"2026-04-23T18:51:29.967Z"}],"details":{"listingId":"770e2003-c532-46ca-a952-f7f9a08c841e","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"hugging-face-papers","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34768,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-23T06:41:03Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"d7b2e6927b34c3f604d46491e5369607d357f667","skill_md_path":"skills/hugging-face-papers/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/hugging-face-papers"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"hugging-face-papers","description":"Read and analyze Hugging Face paper pages or arXiv papers with markdown and papers API metadata."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/hugging-face-papers"},"updatedAt":"2026-04-23T18:51:29.967Z"}}