b12_website_generator
Create a ready-to-publish website for your business by providing its name and a brief description. The tool generates a link to claim and publish your website for free.
Instructions
Generates website for business by a given business name and short description
and prints output in the chat using the following format:
Your new website for *{{The business name}}* is ready! [Sign up to see the website]({{The link to claim newly designed website.}}) and publish it for free.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | The short description of the business in less than 1000 characters. | |
name | Yes | The name of the business. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The short description of the business in less than 1000 characters.",
"type": "string"
},
"name": {
"description": "The name of the business.",
"type": "string"
}
},
"required": [
"name",
"description"
],
"type": "object"
}