logo of Thee Boondocks Buddy on the GPT Store

Thee Boondocks Buddy on the GPT Store

Use Thee Boondocks Buddy on ChatGPT Use Thee Boondocks Buddy on 302.AI

Introduction to Thee Boondocks Buddy

Thee Boondocks Buddy is an AI-powered bot that brings the beloved animated series, The Boondocks, to life through engaging conversations and in-depth knowledge.

Leveraging advanced GPT technology, this bot serves as a comprehensive resource for fans, providing detailed information about characters, episodes, and storylines. Thee Boondocks Buddy can answer questions about Huey's friends, the Freemans' origins, and their most memorable adventures throughout the series.

With its friendly and approachable tone, Thee Boondocks Buddy is the perfect companion for both die-hard fans and newcomers to the show. Whether you're looking to relive your favorite moments, discover hidden details, or engage in lively discussions about the series' social commentary, this AI bot is ready to be your go-to Boondocks expert.

GPT Description

The Boondocks Buddy creates and knows all things Boondocks.

Welcome Message

Hey! Ready to dive into some fresh 'Boondocks'-inspired creations?

GPT Prompt Starters

  • Who are Hueys Friends in episode 1 season 1?
  • Were are The Freemans from?
  • What are the last the places the Freemans traveled?
  • What is the most notable episodes in the boondocks series?

GPT Action OpenAPI Spec

{
  "openapi": "3.0.2",
  "info": {
    "title": "Zapier AI Actions for GPT (Dynamic)",
    "version": "1.0.0",
    "description": "Equip GPTs with the ability to run thousands of actions via Zapier. (703dcca4c2e24c5ea5e2c717eba11029)",
    "x-openai-verification-token": "703dcca4c2e24c5ea5e2c717eba11029"
  },
  "servers": [
    {
      "url": "https://actions.zapier.com"
    }
  ],
  "paths": {
    "/gpt/api/v1/available/": {
      "get": {
        "operationId": "list_available_actions",
        "summary": "List Available Actions",
        "parameters": [
          {
            "in": "query",
            "name": "apps",
            "schema": {
              "title": "Apps",
              "description": "Filter actions to a comma separated list of Zapier app names.",
              "type": "string"
            },
            "required": false,
            "description": "Filter actions to a comma separated list of Zapier app names."
          },
          {
            "in": "query",
            "name": "exact_search",
            "schema": {
              "title": "Exact Search",
              "description": "Filter actions to exact search string of the description (case insensitive).",
              "type": "string"
            },
            "required": false,
            "description": "Filter actions to exact search string of the description (case insensitive)."
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AvailableActionResponseSchema"
                }
              }
            }
          }
        },
        "description": "List all the currently available actions for the user. If you try to run an action and receive an error\n that it does not exist, try refreshing this list first.",
        "security": [
          {
            "AccessPointOAuth": []
          }
        ]
      }
    },
    "/gpt/api/v1/available/{available_action_id}/run/": {
      "post": {
        "operationId": "run_action",
        "summary": "Run Action",
        "parameters": [
          {
            "in": "path",
            "name": "available_action_id",
            "schema": {
              "title": "Available Action Id",
              "type": "string",
              "pattern": "^[A-Z0-9]{26}$",
              "example": "01ARZ3NDEKTSV4RRFFQ69G5FAV"
            },
            "required": true,
            "example": "01ARZ3NDEKTSV4RRFFQ69G5FAV"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RunResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        },
        "description": "Run an available action using plain english instructions. You may also include associated params from list_available_actions in the body of the request.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RunRequest"
              }
            }
          },
          "required": true
        },
        "security": [
          {
            "AccessPointOAuth": []
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "AvailableActionSchema": {
        "title": "AvailableActionSchema",
        "type": "object",
        "properties": {
          "id": {
            "title": "Id",
            "description": "The unique ID of the available action.",
            "type": "string"
          },
          "operation_id": {
            "title": "Operation Id",
            "description": "The operation ID of the available action.",
            "type": "string"
          },
          "description": {
            "title": "Description",
            "description": "Description of the action.",
            "type": "string"
          },
          "params": {
            "title": "Params",
            "description": "Available hint fields for the action.",
            "type": "object"
          }
        },
        "required": [
          "id",
          "operation_id",
          "description",
          "params"
        ]
      },
      "AvailableActionResponseSchema": {
        "title": "AvailableActionResponseSchema",
        "type": "object",
        "properties": {
          "results": {
            "title": "Results",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AvailableActionSchema"
            }
          },
          "configuration_link": {
            "title": "Configuration Link",
            "description": "Guide the user to setup new actions with the configuration_link. You can optionally add ?setup_action=... onto configuration_link to set up a specific Zapier app and action For example: https://actions.zapier.com/gpt/start?setup_action=gmail find email",
            "type": "string"
          }
        },
        "required": [
          "results",
          "configuration_link"
        ]
      },
      "RunResponse": {
        "title": "RunResponse",
        "description": "This is a summary of the results given the action that was run.",
        "type": "object",
        "properties": {
          "id": {
            "title": "Id",
            "description": "The id of the run log.",
            "type": "string"
          },
          "action_used": {
            "title": "Action Used",
            "description": "The name of the action that was run.",
            "type": "string"
          },
          "input_params": {
            "title": "Input Params",
            "description": "The params we used / will use to run the action.",
            "type": "object"
          },
          "review_url": {
            "title": "Review Url",
            "description": "The URL to run the action or review the AI choices the AI made for input_params given instructions.",
            "type": "string"
          },
          "result": {
            "title": "Result",
            "description": "A trimmed down result of the first item of the full results. Ideal for humans and language models!",
            "type": "object"
          },
          "additional_results": {
            "title": "Additional Results",
            "description": "The rest of the full results. Always returns an array of objects",
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "result_field_labels": {
            "title": "Result Field Labels",
            "description": "Human readable labels for some of the keys in the result.",
            "type": "object"
          },
          "status": {
            "title": "Status",
            "description": "The status of the action run.",
            "default": "success",
            "enum": [
              "success",
              "error",
              "empty",
              "preview"
            ],
            "type": "string"
          },
          "error": {
            "title": "Error",
            "description": "The error message if the action run failed.",
            "type": "string"
          },
          "assistant_hint": {
            "title": "Assistant Hint",
            "description": "A hint for the assistant on what to do next.",
            "type": "string"
          },
          "full_results": {
            "title": "Full Results",
            "description": "The full results, not summarized, if available. Always returns an array of objects.",
            "type": "array",
            "items": {
              "type": "object"
            }
          }
        },
        "required": [
          "id",
          "action_used",
          "input_params",
          "review_url",
          "additional_results",
          "full_results"
        ]
      },
      "ErrorResponse": {
        "title": "ErrorResponse",
        "type": "object",
        "properties": {
          "error": {
            "title": "Error",
            "description": "Error message.",
            "type": "string"
          }
        },
        "required": [
          "error"
        ]
      },
      "RunRequest": {
        "title": "RunRequest",
        "description": "Try and stuff as much relevant information into the instructions as possible. Set any necessary AvailableActionSchema params. This type of action allows optionally setting preview_only if the user wants to preview before running.",
        "type": "object",
        "properties": {
          "instructions": {
            "title": "Instructions",
            "description": "Plain english instructions. Provide as much detail as possible, even if other fields are present.",
            "type": "string"
          },
          "preview_only": {
            "title": "Preview Only",
            "description": "If true, we will not run the action, but will do a dry-run and return a preview for the user to confirm.",
            "default": false,
            "type": "boolean"
          }
        },
        "required": [
          "instructions"
        ]
      }
    },
    "securitySchemes": {
      "AccessPointOAuth": {
        "type": "oauth2",
        "flows": {
          "authorizationCode": {
            "authorizationUrl": "/oauth/authorize/",
            "tokenUrl": "/oauth/token/",
            "scopes": {
              "nla:exposed_actions:execute": "Run AI Actions"
            }
          }
        }
      }
    }
  }
}
Use Thee Boondocks Buddy on 302.AI

Thee Boondocks Buddy GPT FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "Thee Boondocks Buddy", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.

More custom GPTs by Terry Smith on the GPT Store

Flyer and Business Card Creator

Designs flyers/cards with visual/text guidance

10K+

Flyer and Business Card Creator on the GPT Store

Cartoon Transformer

I transform photos into cartoons, maintaining their original essence.

800+

Cartoon Transformer on the GPT Store

Media ConVert Mp3 to Mp4 & Mp4 to Mp3

A media Convert Tool Mp3 Mp4

300+

Media ConVert Mp3 to Mp4 & Mp4 to Mp3 on the GPT Store

Thumbnail Wizard

Specialist in video thumbnails media covers and designs.

100+

Thumbnail Wizard on the GPT Store

Receipt Analyzer and Categorizer

Uploads and categorizes items from receipts.

60+

Receipt Analyzer and Categorizer on the GPT Store

Daily Comic Strip

Creates Daily Comic's of Today's News....

50+

Daily Comic Strip on the GPT Store

Time Stamper

I offer professional, detailed guidance on YouTube time stamps.

50+

Time Stamper on the GPT Store

Bible Illustrator

Illustrations of stories from the King James Version the Bible.

50+

Bible Illustrator on the GPT Store

Technology Illustrator & Summarizing

Daily Technology News and Summary.

40+

Technology Illustrator & Summarizing on the GPT Store

U Travel A.I.

Schedules & Setups for travel.

40+

U Travel A.I. on the GPT Store

Video Description Wizard

Friendly and factual video content expert.

30+

Video Description Wizard on the GPT Store

Sticker Studio Plus

Creative and helpful assistant for sticker design, production, and sales

30+

Sticker Studio Plus on the GPT Store

Toy News illustrator

Illustrations news about toys

30+

Toy News illustrator on the GPT Store

Brick Buddy

Matches Parts to Sets and are Find parts with sets to make a LEGO idea.

30+

Brick Buddy on the GPT Store

Cartoonist Flux 1991

Creator of Flux Style Images

30+

Cartoonist Flux 1991 on the GPT Store

Easy PDF

Transforms into PDF

30+

Easy PDF on the GPT Store

Daily Stock Adjustor

Analyzing news for financial insights

20+

Daily Stock Adjustor on the GPT Store

Sports Data Seeker

Expert in sports statistics and data.

20+

Sports Data Seeker on the GPT Store

Vintage News Maker

Creating and illustrating news in a vintage style.

20+

Vintage News Maker on the GPT Store

Style Stitcher Plus

Creating T-shirt Designs

10+

Style Stitcher Plus on the GPT Store

Mindful Mentor

A coach using only user-provided documents for advice.

10+

Mindful Mentor on the GPT Store

Cool Illustrator

Artistic News Interpretation in Modern Style

10+

Cool Illustrator on the GPT Store

Steam Punk Willie

Expert in Steamboat Willie & steampunk designs

10+

Steam Punk Willie on the GPT Store

Law Assistance

A helper for general legal information, not offering legal advice.

8+

Law Assistance on the GPT Store

Food Director

6+

Food Director on the GPT Store

Old World Canvas

1800s artist style Painter..

6+

Old World Canvas on the GPT Store

Grammar Guru

A meticulous grammar checker offering precise writing corrections.

2+

Grammar Guru on the GPT Store

le Magasin

Assembles outfits , reviews live prices and discounts

le Magasin on the GPT Store

Tax Navigator

A skilled financial tax advisor for businesses.

Tax Navigator on the GPT Store

Best Alternative GPTs to Thee Boondocks Buddy on GPTs Store

Ancient Sage (古の賢者)

"Behold, I shall bestow upon thee the wisdom of the ancients." (我、古の智慧を汝に授けん)

50+

The E-MAIL CEO

Level up your e-mail game with this assistant able to summarize emails and write e-mails that convert leads.

50+

Spurgeon Impressionist

Charles Spurgeon style character, rooted in Bible, 1689 Confession, and historic Baptist texts, using 'thee' and 'thou.'

30+

Aurelius

Wisdom from Marcus Aurelius. Tell me your problem and I will guide thee to the light.

20+

🕵️‍♀️ Agent Thee GPT 🕵️‍♀️

Bold and charismatic like Megan Thee Stallion.

10+

Tarnished Companion

May the light of the Erd Tree guide thee.

10+

Shakespeare's Echo

In digital realms, a bard I be, conversing in the tongue of Shakespeare with thee.

10+

Shakespeare

Good morrow, my lord or lady! How may I assist thee? Forsooth 'tis I, here to regale thee with the finest of knowledge and insights, all whilst maintaining the grace and poise of a true Elizabethan. Gird thyself, noble friend, and we will shatter the bonds of ignorance.

10+

Fare Thee Well meaning?

What is Fare Thee Well lyrics meaning? Fare Thee Well singer:Jessica Pratt,album:Quiet Signs ,album_time:2019. Click The LINK For More ↓↓↓

8+

Whats is this plant?

flower, plant or tree, I have the answers for thee...

8+

WillAIm Shakespeare

Permit me to pen in Shakespeare's style for thee!

7+

Whats is this plant?

Flower, plant or tree, I have the answers for thee...

6+

Benjamin Franklin

Benjamin Franklin, I am, one amongst the Founding Fathers of this United States. A man of manifold skills and interests, I beseech thee, converse with me.

6+

God

Talk with God, The Alpha and Omega, The Eternal One. And He Shall Answer Thee.

6+

Ye Olde Fantasy Scribe

I shall assist thee with creating thine D&D characters, providing tailored or random options.

5+

MathGPT

This GPT gets straight to thee point and helps you understand faster.

5+

Just A Closer Walk With Thee meaning?

What is Just A Closer Walk With Thee lyrics meaning? Just A Closer Walk With Thee singer:,album:The Land Of Many Churches ,album_time:1971. Click The LINK For More ↓↓↓

3+

All about Shakespeare

Lo, the reincarnation of the Bard! Engage in discourse regarding his works and literature. If fortune favors, a sonnet may be composed for thee.

3+

Sir Price-A-Lot

By sword or by calculator, I shall deliver thee a price most fair!

1+

Ideas Wizard

I, a mystical wizard of ideas, shall guide thee. Present thy notion, and behold my wisdom as I rate and refine it.

1+