gradio-taggrouphelper


Namegradio-taggrouphelper JSON
Version 0.0.3 PyPI version JSON
download
home_pageNone
SummaryA fast text generator based on tagged words
upload_time2025-07-26 01:01:55
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords gradio-custom-component gradio-template-fallback
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ---
tags: [gradio-custom-component, ]
title: gradio_taggrouphelper
short_description: A fast prompt generator based on tagged words
colorFrom: blue
colorTo: yellow
sdk: gradio
pinned: false
app_file: space.py
---

# `gradio_taggrouphelper`
<a href="https://pypi.org/project/gradio_taggrouphelper/" target="_blank"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/gradio_taggrouphelper"></a>  

A fast text generator based on tagged words

## Installation

```bash
pip install gradio_taggrouphelper
```

## Usage

```python
#
# demo/app.py
#
import gradio as gr
from gradio_taggrouphelper import TagGroupHelper 

# Example data structure for the tags and groups
TAG_DATA = {
    "Quality": [
        "best quality", "masterpiece", "high resolution", "4k", "8k", 
        "sharp focus", "detailed", "photorealistic"
    ],
    "Lighting": [
        "cinematic lighting", "volumetric lighting", "god rays", 
        "golden hour", "studio lighting", "dramatic lighting"
    ],
    "Style": [
        "anime style", "oil painting", "concept art", "fantasy", 
        "steampunk", "vaporwave", "line art"
    ],
    "Negative Prompts": [
        "blurry", "noisy", "low resolution", "low quality", "watermark",
        "text", "bad anatomy", "extra limbs", "disfigured"
    ]
}

css=""" 
body {    
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;    
    margin: 0;
    padding: 0;
}
.gradio-container {    
    border-radius: 15px;
    padding: 30px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin: 40px 340px;    
}
.gradio-container h1 {    
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.fillable {
    width: 100% !important;
    max-width: unset !important;
}
#examples_container {
    margin: auto;
    width: 90%;
}
#examples_row {
    justify-content: center;
}
#tips_row{    
    padding-left: 20px;
}
.sidebar {    
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.sidebar .toggle-button {    
    background: linear-gradient(90deg, #34d399, #10b981) !important;
    border: none;    
    padding: 12px 18px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}
.toggle-button:hover {
    transform: scale(1.05);
}
.sidebar .sidebar-content {
    padding-left: 10px !important;
}
.sidebar .sidebar-content .column .block div .prose {
    text-align: center;
}
"""
with gr.Blocks(theme=gr.themes.Ocean(), css=css) as demo:
    gr.Markdown("# Tag Group Helper Demo")
    gr.Markdown("Click on the tags below to add them to the prompt textboxes.")
    gr.Markdown("<span>💻 <a href='https://github.com/DEVAIEXP/gradio_component_taggrouphelper'>GitHub Code</a></span>")
    with gr.Row():
        with gr.Column(scale=2): # Give more space to the textboxes
            # Create the target Textbox and give it a unique `elem_id`.
            positive_prompt_box = gr.Textbox(
                label="Positive Prompt",
                placeholder="Click tags from 'Prompt Keywords' to add them here...",
                lines=5,
                elem_id="positive-prompt-textbox" # This ID must be unique
            )
            negative_prompt_box = gr.Textbox(
                label="Negative Prompt",
                placeholder="Click tags from 'Negative Keywords' to add them here...",
                lines=5,
                elem_id="negative-prompt-textbox" # This ID must be unique
            )
        with gr.Sidebar(position="right"):           
            # Create an instance of the TagGroupHelper for the Positive Prompt box.
            TagGroupHelper(
                label="Positive Prompt Keywords",
                value={k: v for k, v in TAG_DATA.items() if "Negative" not in k},
                target_textbox_id="positive-prompt-textbox",
                separator=", ",
                interactive=True,
                width=250,
                font_size_scale=90
                
            )
            
            # Create another instance for the Negative Prompt box.
            TagGroupHelper(
                label="Negative Prompt Keywords",
                value={"Negative Prompts": TAG_DATA["Negative Prompts"]},
                target_textbox_id="negative-prompt-textbox",
                separator=", ",
                interactive=True,
                width=250,                
                font_size_scale=90
            )

if __name__ == '__main__':
    demo.launch()
```

## `TagGroupHelper`

### Initialization

<table>
<thead>
<tr>
<th align="left">name</th>
<th align="left" style="width: 25%;">type</th>
<th align="left">default</th>
<th align="left">description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>value</code></td>
<td align="left" style="width: 25%;">

```python
typing.Optional[typing.Dict[str, typing.List[str]]][
    typing.Dict[str, typing.List[str]][
        str, typing.List[str][str]
    ],
    None,
]
```

</td>
<td align="left"><code>None</code></td>
<td align="left">A dictionary where keys are group names and values are lists of tags.</td>
</tr>

<tr>
<td align="left"><code>height</code></td>
<td align="left" style="width: 25%;">

```python
int | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The height of the component container in pixels.</td>
</tr>

<tr>
<td align="left"><code>width</code></td>
<td align="left" style="width: 25%;">

```python
int | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The width of the component container in pixels.</td>
</tr>

<tr>
<td align="left"><code>label</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The label for this component, displayed above the groups.</td>
</tr>

<tr>
<td align="left"><code>font_size_scale</code></td>
<td align="left" style="width: 25%;">

```python
int
```

</td>
<td align="left"><code>100</code></td>
<td align="left">A percentage to scale the font size of group headers and tags. Defaults to 100.</td>
</tr>

<tr>
<td align="left"><code>every</code></td>
<td align="left" style="width: 25%;">

```python
float | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">If `value` is a callable, run the function 'every' seconds while the client connection is open.</td>
</tr>

<tr>
<td align="left"><code>show_label</code></td>
<td align="left" style="width: 25%;">

```python
bool | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">If False, the label is not displayed.</td>
</tr>

<tr>
<td align="left"><code>container</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If False, the component will not be wrapped in a container.</td>
</tr>

<tr>
<td align="left"><code>scale</code></td>
<td align="left" style="width: 25%;">

```python
int | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The relative size of the component compared to others in a `gr.Row` or `gr.Column`.</td>
</tr>

<tr>
<td align="left"><code>min_width</code></td>
<td align="left" style="width: 25%;">

```python
int
```

</td>
<td align="left"><code>160</code></td>
<td align="left">The minimum width of the component in pixels.</td>
</tr>

<tr>
<td align="left"><code>interactive</code></td>
<td align="left" style="width: 25%;">

```python
bool | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">if True, will be rendered as an selectable component; if False, editing will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.</td>
</tr>

<tr>
<td align="left"><code>target_textbox_id</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The `elem_id` of the `gr.Textbox` component to target. Required.</td>
</tr>

<tr>
<td align="left"><code>separator</code></td>
<td align="left" style="width: 25%;">

```python
str
```

</td>
<td align="left"><code>", "</code></td>
<td align="left">The string to use as a separator between tags. Defaults to ", ". Can be set to " " for space separation.</td>
</tr>

<tr>
<td align="left"><code>visible</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If False, the component will be hidden.</td>
</tr>

<tr>
<td align="left"><code>elem_id</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">An optional string that is assigned as the id of this component in the HTML DOM.</td>
</tr>

<tr>
<td align="left"><code>elem_classes</code></td>
<td align="left" style="width: 25%;">

```python
list[str] | str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">An optional list of strings to assign as CSS classes to the component.</td>
</tr>
</tbody></table>




### User function

The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).

- When used as an Input, the component only impacts the input signature of the user function.
- When used as an output, the component only impacts the return signature of the user function.

The code snippet below is accurate in cases where the component is used as both an input and an output.



 ```python
 def predict(
     value: Any
 ) -> typing.Optional[typing.Dict[str, typing.List[str]]][
    typing.Dict[str, typing.List[str]][
        str, typing.List[str][str]
    ],
    None,
]:
     return value
 ```
 

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "gradio-taggrouphelper",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "gradio-custom-component, gradio-template-Fallback",
    "author": null,
    "author_email": "Eliseu Silva <elismasilva@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/f6/8c/35624ab62a571108efe1d9be171baa20479172725cfad5ebdb87f9239df6/gradio_taggrouphelper-0.0.3.tar.gz",
    "platform": null,
    "description": "---\ntags: [gradio-custom-component, ]\ntitle: gradio_taggrouphelper\nshort_description: A fast prompt generator based on tagged words\ncolorFrom: blue\ncolorTo: yellow\nsdk: gradio\npinned: false\napp_file: space.py\n---\n\n# `gradio_taggrouphelper`\n<a href=\"https://pypi.org/project/gradio_taggrouphelper/\" target=\"_blank\"><img alt=\"PyPI - Version\" src=\"https://img.shields.io/pypi/v/gradio_taggrouphelper\"></a>  \n\nA fast text generator based on tagged words\n\n## Installation\n\n```bash\npip install gradio_taggrouphelper\n```\n\n## Usage\n\n```python\n#\n# demo/app.py\n#\nimport gradio as gr\nfrom gradio_taggrouphelper import TagGroupHelper \n\n# Example data structure for the tags and groups\nTAG_DATA = {\n    \"Quality\": [\n        \"best quality\", \"masterpiece\", \"high resolution\", \"4k\", \"8k\", \n        \"sharp focus\", \"detailed\", \"photorealistic\"\n    ],\n    \"Lighting\": [\n        \"cinematic lighting\", \"volumetric lighting\", \"god rays\", \n        \"golden hour\", \"studio lighting\", \"dramatic lighting\"\n    ],\n    \"Style\": [\n        \"anime style\", \"oil painting\", \"concept art\", \"fantasy\", \n        \"steampunk\", \"vaporwave\", \"line art\"\n    ],\n    \"Negative Prompts\": [\n        \"blurry\", \"noisy\", \"low resolution\", \"low quality\", \"watermark\",\n        \"text\", \"bad anatomy\", \"extra limbs\", \"disfigured\"\n    ]\n}\n\ncss=\"\"\" \nbody {    \n    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;    \n    margin: 0;\n    padding: 0;\n}\n.gradio-container {    \n    border-radius: 15px;\n    padding: 30px 40px;\n    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);\n    margin: 40px 340px;    \n}\n.gradio-container h1 {    \n    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);\n}\n.fillable {\n    width: 100% !important;\n    max-width: unset !important;\n}\n#examples_container {\n    margin: auto;\n    width: 90%;\n}\n#examples_row {\n    justify-content: center;\n}\n#tips_row{    \n    padding-left: 20px;\n}\n.sidebar {    \n    border-radius: 10px;\n    padding: 10px;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n}\n.sidebar .toggle-button {    \n    background: linear-gradient(90deg, #34d399, #10b981) !important;\n    border: none;    \n    padding: 12px 18px;\n    text-transform: uppercase;\n    font-weight: bold;\n    letter-spacing: 1px;\n    border-radius: 5px;\n    cursor: pointer;\n    transition: transform 0.2s ease-in-out;\n}\n.toggle-button:hover {\n    transform: scale(1.05);\n}\n.sidebar .sidebar-content {\n    padding-left: 10px !important;\n}\n.sidebar .sidebar-content .column .block div .prose {\n    text-align: center;\n}\n\"\"\"\nwith gr.Blocks(theme=gr.themes.Ocean(), css=css) as demo:\n    gr.Markdown(\"# Tag Group Helper Demo\")\n    gr.Markdown(\"Click on the tags below to add them to the prompt textboxes.\")\n    gr.Markdown(\"<span>\ud83d\udcbb <a href='https://github.com/DEVAIEXP/gradio_component_taggrouphelper'>GitHub Code</a></span>\")\n    with gr.Row():\n        with gr.Column(scale=2): # Give more space to the textboxes\n            # Create the target Textbox and give it a unique `elem_id`.\n            positive_prompt_box = gr.Textbox(\n                label=\"Positive Prompt\",\n                placeholder=\"Click tags from 'Prompt Keywords' to add them here...\",\n                lines=5,\n                elem_id=\"positive-prompt-textbox\" # This ID must be unique\n            )\n            negative_prompt_box = gr.Textbox(\n                label=\"Negative Prompt\",\n                placeholder=\"Click tags from 'Negative Keywords' to add them here...\",\n                lines=5,\n                elem_id=\"negative-prompt-textbox\" # This ID must be unique\n            )\n        with gr.Sidebar(position=\"right\"):           \n            # Create an instance of the TagGroupHelper for the Positive Prompt box.\n            TagGroupHelper(\n                label=\"Positive Prompt Keywords\",\n                value={k: v for k, v in TAG_DATA.items() if \"Negative\" not in k},\n                target_textbox_id=\"positive-prompt-textbox\",\n                separator=\", \",\n                interactive=True,\n                width=250,\n                font_size_scale=90\n                \n            )\n            \n            # Create another instance for the Negative Prompt box.\n            TagGroupHelper(\n                label=\"Negative Prompt Keywords\",\n                value={\"Negative Prompts\": TAG_DATA[\"Negative Prompts\"]},\n                target_textbox_id=\"negative-prompt-textbox\",\n                separator=\", \",\n                interactive=True,\n                width=250,                \n                font_size_scale=90\n            )\n\nif __name__ == '__main__':\n    demo.launch()\n```\n\n## `TagGroupHelper`\n\n### Initialization\n\n<table>\n<thead>\n<tr>\n<th align=\"left\">name</th>\n<th align=\"left\" style=\"width: 25%;\">type</th>\n<th align=\"left\">default</th>\n<th align=\"left\">description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td align=\"left\"><code>value</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\ntyping.Optional[typing.Dict[str, typing.List[str]]][\n    typing.Dict[str, typing.List[str]][\n        str, typing.List[str][str]\n    ],\n    None,\n]\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">A dictionary where keys are group names and values are lists of tags.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>height</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The height of the component container in pixels.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>width</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The width of the component container in pixels.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The label for this component, displayed above the groups.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>font_size_scale</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint\n```\n\n</td>\n<td align=\"left\"><code>100</code></td>\n<td align=\"left\">A percentage to scale the font size of group headers and tags. Defaults to 100.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>every</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nfloat | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If `value` is a callable, run the function 'every' seconds while the client connection is open.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If False, the label is not displayed.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>container</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, the component will not be wrapped in a container.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>scale</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The relative size of the component compared to others in a `gr.Row` or `gr.Column`.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>min_width</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint\n```\n\n</td>\n<td align=\"left\"><code>160</code></td>\n<td align=\"left\">The minimum width of the component in pixels.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>interactive</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if True, will be rendered as an selectable component; if False, editing will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>target_textbox_id</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The `elem_id` of the `gr.Textbox` component to target. Required.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>separator</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr\n```\n\n</td>\n<td align=\"left\"><code>\", \"</code></td>\n<td align=\"left\">The string to use as a separator between tags. Defaults to \", \". Can be set to \" \" for space separation.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>visible</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, the component will be hidden.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_id</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An optional string that is assigned as the id of this component in the HTML DOM.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_classes</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[str] | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An optional list of strings to assign as CSS classes to the component.</td>\n</tr>\n</tbody></table>\n\n\n\n\n### User function\n\nThe impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).\n\n- When used as an Input, the component only impacts the input signature of the user function.\n- When used as an output, the component only impacts the return signature of the user function.\n\nThe code snippet below is accurate in cases where the component is used as both an input and an output.\n\n\n\n ```python\n def predict(\n     value: Any\n ) -> typing.Optional[typing.Dict[str, typing.List[str]]][\n    typing.Dict[str, typing.List[str]][\n        str, typing.List[str][str]\n    ],\n    None,\n]:\n     return value\n ```\n \n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A fast text generator based on tagged words",
    "version": "0.0.3",
    "project_urls": null,
    "split_keywords": [
        "gradio-custom-component",
        " gradio-template-fallback"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91152dfe7a22267279b6f92a466c1824e1e042cf3622a57121616a70dce55a30",
                "md5": "fc2d8cf6ebce2958928034522fc76d52",
                "sha256": "2424de62fb6304e9f4aed7f0727249ab74dccedb9b8371d94baa949ce8c7bcf3"
            },
            "downloads": -1,
            "filename": "gradio_taggrouphelper-0.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fc2d8cf6ebce2958928034522fc76d52",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 1116179,
            "upload_time": "2025-07-26T01:01:54",
            "upload_time_iso_8601": "2025-07-26T01:01:54.322132Z",
            "url": "https://files.pythonhosted.org/packages/91/15/2dfe7a22267279b6f92a466c1824e1e042cf3622a57121616a70dce55a30/gradio_taggrouphelper-0.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f68c35624ab62a571108efe1d9be171baa20479172725cfad5ebdb87f9239df6",
                "md5": "520ce764662c5c7317a319d6db49dfcb",
                "sha256": "e20e7658b54b875fb5391ec105e7657c9e6f5934f114b1512b66e544c36c882f"
            },
            "downloads": -1,
            "filename": "gradio_taggrouphelper-0.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "520ce764662c5c7317a319d6db49dfcb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 1116362,
            "upload_time": "2025-07-26T01:01:55",
            "upload_time_iso_8601": "2025-07-26T01:01:55.849252Z",
            "url": "https://files.pythonhosted.org/packages/f6/8c/35624ab62a571108efe1d9be171baa20479172725cfad5ebdb87f9239df6/gradio_taggrouphelper-0.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-26 01:01:55",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gradio-taggrouphelper"
}
        
Elapsed time: 1.14671s