get_weekly_news
Retrieve weekly news summaries from GeekNews by specifying a weekly ID or fetching the most recent update, returning detailed information in a structured format.
Instructions
GeekNews에서 주간 뉴스를 가져오는 도구
Args:
weekly_id: 주간 뉴스 ID (빈 문자열인 경우 가장 최근 주간 뉴스를 가져옴)
Returns:
Dict[str, Any]: 주간 뉴스 정보
Input Schema
Name | Required | Description | Default |
---|---|---|---|
weekly_id | No |
Input Schema (JSON Schema)
{
"properties": {
"weekly_id": {
"default": "",
"title": "Weekly Id",
"type": "string"
}
},
"title": "get_weekly_newsArguments",
"type": "object"
}