Skip to main content

Python library for easily interacting with trained machine learning models

Project description


tags: [gradio-custom-component, Markdown] title: gradio_markdowntooltip short_description: A gradio custom component colorFrom: blue colorTo: yellow sdk: gradio pinned: false app_file: space.py

gradio_markdowntooltip

Static Badge

Python library for easily interacting with trained machine learning models

Installation

pip install gradio_markdowntooltip

Usage

import gradio as gr
from gradio_markdowntooltip import MarkdownTooltip


with gr.Blocks() as demo:
    gr.Markdown("# MarkdownTooltip Demo")
    gr.Markdown("This demo showcases the MarkdownTooltip component with tooltip functionality.")
    
    with gr.Row():
        with gr.Column():
            MarkdownTooltip(
                value="## Basic Markdown",
                label="Without Tooltip",
                tooltip="This is a helpful tooltip that appears when you hover over the question mark icon!",
            )
        
        with gr.Column():
            MarkdownTooltip(
                value="## Enhanced Markdown",
                tooltip="This is a helpful tooltip that appears when you hover over the question mark icon!",
                label="With Tooltip"
            )
    
    with gr.Row():
        with gr.Column():
            MarkdownTooltip(
                value="""
## Features List
- **Bold text**
- *Italic text*  
- `Code snippets`
- [Links](https://gradio.app)

### Math Support
Inline math: $x = y + z$

Block math:
$$
\\int_{-\\infty}^{\\infty} e^{-x^2} dx = \\sqrt{\\pi}
$$
                """,
                tooltip="This tooltip explains the mathematical notation and formatting features available in this markdown component.",
                label="Advanced Features"
            )
        
        with gr.Column():
            MarkdownTooltip(
                value="123",
                tooltip="Tooltips are perfect for providing additional context, explanations, or help text without cluttering the main content area.",
                label="Usage Instructions"
            )


if __name__ == "__main__":
    demo.launch()

MarkdownTooltip

Initialization

name type default description
value
str | I18nData | Callable | None
None Value to show in MarkdownTooltip component. If a function is provided, the function will be called each time the app loads to set the initial value of this component.
tooltip
str | None
None Optional tooltip text to show when hovering over the (?) icon. If not provided, no tooltip icon will be displayed.
label
str | I18nData | None
None This parameter has no effect
every
Timer | float | None
None Continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.
inputs
Component | Sequence[Component] | set[Component] | None
None Components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.
show_label
bool | None
None This parameter has no effect.
rtl
bool
False If True, sets the direction of the rendered text to right-to-left. Default is False, which renders text left-to-right.
latex_delimiters
list[dict[str, str | bool]] | None
None A list of dicts of the form {"left": open delimiter (str), "right": close delimiter (str), "display": whether to display in newline (bool)} that will be used to render LaTeX expressions. If not provided, `latex_delimiters` is set to `[{ "left": "$$", "right": "$$", "display": True }]`, so only expressions enclosed in $$ delimiters will be rendered as LaTeX, and in a new line. Pass in an empty list to disable LaTeX rendering. For more information, see the [KaTeX documentation](https://katex.org/docs/autorender.html).
visible
bool
True If False, component will be hidden.
elem_id
str | None
None An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.
elem_classes
list[str] | str | None
None An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.
render
bool
True If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.
key
int | str | tuple[int | str, ...] | None
None in a gr.render, Components with the same key across re-renders are treated as the same component, not a new component. Properties set in 'preserved_by_key' are not reset across a re-render.
preserved_by_key
list[str] | str | None
"value" A list of parameters from this component's constructor. Inside a gr.render() function, if a component is re-rendered with the same key, these (and only these) parameters will be preserved in the UI (if they have been changed by the user or an event listener) instead of re-rendered based on the values provided during constructor.
sanitize_html
bool
True If False, will disable HTML sanitization when converted from markdown. This is not recommended, as it can lead to security vulnerabilities.
line_breaks
bool
False If True, will enable Github-flavored MarkdownTooltip line breaks in chatbot messages. If False (default), single new lines will be ignored.
header_links
bool
False If True, will automatically create anchors for headings, displaying a link icon on hover.
height
int | str | None
None The height of the component, specified in pixels if a number is passed, or in CSS units if a string is passed. If markdown content exceeds the height, the component will scroll.
max_height
int | str | None
None The maximum height of the component, specified in pixels if a number is passed, or in CSS units if a string is passed. If markdown content exceeds the height, the component will scroll. If markdown content is shorter than the height, the component will shrink to fit the content. Will not have any effect if `height` is set and is smaller than `max_height`.
min_height
int | str | None
None The minimum height of the component, specified in pixels if a number is passed, or in CSS units if a string is passed. If markdown content exceeds the height, the component will expand to fit the content. Will not have any effect if `height` is set and is larger than `min_height`.
show_copy_button
bool
False If True, includes a copy button to copy the text in the MarkdownTooltip component. Default is False.
container
bool
False If True, the MarkdownTooltip component will be displayed in a container. Default is False.
padding
bool
False If True, the MarkdownTooltip component will have a certain padding (set by the `--block-padding` CSS variable) in all directions. Default is False.

Events

name description
change Triggered when the value of the MarkdownTooltip changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See .input() for a listener that is only triggered by user input.
copy This listener is triggered when the user copies content from the MarkdownTooltip. Uses event data gradio.CopyData to carry information about the copied content. See EventData documentation on how to use this event data

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.

  • As output: Is passed, passes the str of MarkdownTooltip corresponding to the displayed value.
  • As input: Should return, expects a valid str that can be rendered as MarkdownTooltip.
def predict(
    value: str | None
) -> str | gradio.i18n.I18nData | None:
    return value

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gradio_markdowntooltip-0.0.1.tar.gz (3.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gradio_markdowntooltip-0.0.1-py3-none-any.whl (3.9 MB view details)

Uploaded Python 3

File details

Details for the file gradio_markdowntooltip-0.0.1.tar.gz.

File metadata

  • Download URL: gradio_markdowntooltip-0.0.1.tar.gz
  • Upload date:
  • Size: 3.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for gradio_markdowntooltip-0.0.1.tar.gz
Algorithm Hash digest
SHA256 31c0a4bb788f040a3d3199e5855345472cad66392ec3ebef2cd212f7be4f4cdb
MD5 d8e8ad5581cd4eb34dd6fdc175bcb39d
BLAKE2b-256 fd4123b579919af16b941bcf312d0174e103c25cc07cff884f0172c35349e981

See more details on using hashes here.

File details

Details for the file gradio_markdowntooltip-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for gradio_markdowntooltip-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 347302baea4d182c205d0735ea9efdc33fcbe7f88865aaf540dd4cede3cdc06a
MD5 a36ef03d1c35a6146fdd987f92e09ed1
BLAKE2b-256 78d28c37d0bac31af906c7f0d26cd55fa0cd3ca8e2559ec54b90e86fa863007c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page