get_papers_by_date
Retrieve HuggingFace daily research papers for any specific date to access academic publications and stay informed about machine learning developments.
Instructions
Get HuggingFace daily papers for a specific date
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}