get_hn_post_formatted_comments
Retrieve and format comments from a Hacker News discussion post to prepare them for summarization by an LLM using specific prompts.
Instructions
Retrieves and formats comments from a Hacker News discussion post for summarization by an LLM. Use the hacker_news_summarization_user_prompt
prompts to generate a summary.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_url | Yes | The URL or ID for the Hacker News post to analyze. Can be a full URL (https://news.ycombinator.com/item?id=43456723) or just the numeric post ID e.g. 43456723. |
Input Schema (JSON Schema)
{
"properties": {
"post_url": {
"description": "The URL or ID for the Hacker News post to analyze. Can be a full URL (https://news.ycombinator.com/item?id=43456723) or just the numeric post ID e.g. 43456723.",
"type": "string"
}
},
"required": [
"post_url"
],
"type": "object"
}