Skip to content

Commit

Permalink
added description to fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiakman committed Feb 7, 2025
1 parent e715e94 commit 5f6b5e2
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tools/reddit-blog-post-generator/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"properties": {
"post_guidelines": {
"type": "string",
"description": "The guidelines for the blog post like strucutre, tone, etc"
"description": "The guidelines for the blog post like structure, tone, etc"
}
},
"required": [
Expand All @@ -25,10 +25,10 @@
"properties": {
"subreddit": {
"type": "string",
"description": "The subreddit to scrape"
"description": "The subreddit name to scrape posts from"
},
"get_by": {
"description": "",
"description": "The method to sort and retrieve Reddit posts",
"type": "string",
"enum": [
"hot",
Expand All @@ -38,7 +38,7 @@
]
},
"top_time": {
"description": "",
"description": "The time period to filter top posts when get_by is set to 'top'",
"type": "string",
"enum": [
"day",
Expand All @@ -57,10 +57,12 @@
"type": "object",
"properties": {
"post_title": {
"type": "string"
"type": "string",
"description": "The generated title for the blog post"
},
"post_content": {
"type": "string"
"type": "string",
"description": "The generated content/body of the blog post"
}
},
"required": [
Expand Down

0 comments on commit 5f6b5e2

Please sign in to comment.