Define Gradio using type hints
Project description
FnGradio
This is an experimental library that allows you to define Gradio apps using type hints.
Install
pip install fngradio
Simple Example
Instead of (where type hints are not used for the interface):
import gradio as gr
def add_int_numbers(a: int, b: int) -> int:
"""
Add two int numbers
"""
return a + b
demo = gr.Interface(
fn=add_int_numbers,
api_name="add_int_numbers",
inputs=[
gr.Number(precision=0),
gr.Number(precision=0)
],
outputs=[gr.Number(precision=0)],
)
if __name__ == '__main__':
demo.launch(share=False)
You can define the Gradio interface around by just adding the fngr.interface annotation which will create inputs and outputs based on the type hints:
import fngradio as fngr
@fngr.interface()
def add_int_numbers(a: int, b: int) -> int:
"""
Add two int numbers
"""
return a + b
if __name__ == '__main__':
add_int_numbers.launch(share=False)
Slider for Integer With Range
You can use pydantic's Field annotation to provide additional information. If ge and le are defined for an integer, then it will use the Gradio's Slider component.
from typing import Annotated
from pydantic import Field
import fngradio as fngr
@fngr.interface()
def add_int_numbers_with_sliders(
a: Annotated[int, Field(title="First value", ge=0, le=100)] = 50,
b: Annotated[int, Field(title="Second value", ge=0, le=100)] = 50
) -> int:
"""
Add two int numbers
"""
return a + b
Dropdown for Literal
from typing import Literal
from pydantic import Field
import fngradio as fngr
@fngr.interface
def say(what: Literal["hi", "bye"]) -> str:
"""
Says Hi! or Bye!
"""
return "Hi!" if what == "hi" else "Bye!"
Specify Component in Type Annotation
You can also specify the Gradio Component to use by adding it to the type annotation:
from typing import Annotated
import gradio as gr
import fngradio as fngr
@fngr.interface()
def to_upper_case(
s: Annotated[str, gr.TextArea(label="text", value="Hello")]
) -> Annotated[str, gr.TextArea()]:
"""
Converts text to upper case
"""
return s.upper()
Tabbed Interface
A tabbed interface can be useful when you have multiple tools (e.g. multiple MCP tools).
Instead of:
demo = gr.TabbedInterface(
interface_list=[
add_int_numbers,
to_upper_case
],
tab_names=["add_int_numbers", "to_upper_case"]
)
You could use the fngr.tabbed_interface:
demo = fngr.tabbed_interface([
add_int_numbers,
to_upper_case
])
The main advantage is that it will try to infer the names from the interface.
Or even simpler use FnGradioApp for defining interfaces:
from fngradio import FnGradioApp
app = FnGradioApp()
@app.interface()
def add_int_numbers(a: int, b: int) -> int:
"""
Add two int numbers
"""
return a + b
@app.interface()
def to_upper_case(s: str) -> str:
"""
Converts text to upper case
"""
return s.upper()
demo = app.tabbed()
if __name__ == '__main__':
demo.launch(share=False)
Combine Apps
In order to support apps across modules, you can combine apps:
from fngradio import FnGradioApp
app_1 = FnGradioApp()
app_2 = FnGradioApp()
@app_1.interface()
def upper(s: str) -> str:
return s.upper()
@app_2.interface()
def lower(s: str) -> str:
return s.lower()
app = FnGradioApp(apps=[app_1, app_2])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fngradio-0.0.7.tar.gz.
File metadata
- Download URL: fngradio-0.0.7.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41484baa255a52cfadd708021b94d08697f6c3ae38e8ac4b0902769fd99bcf7d
|
|
| MD5 |
aff23c4196f9704cde9fa0b72f767dee
|
|
| BLAKE2b-256 |
4178a005fa09b6465bd07db55a967662505795f6876f7ea1910a2c19d0596440
|
Provenance
The following attestation bundles were made for fngradio-0.0.7.tar.gz:
Publisher:
ci.yml on de-code/fngradio
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fngradio-0.0.7.tar.gz -
Subject digest:
41484baa255a52cfadd708021b94d08697f6c3ae38e8ac4b0902769fd99bcf7d - Sigstore transparency entry: 409611807
- Sigstore integration time:
-
Permalink:
de-code/fngradio@35c2d6295aa77333aa60e14548fbabda9f959ad6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/de-code
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@35c2d6295aa77333aa60e14548fbabda9f959ad6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fngradio-0.0.7-py3-none-any.whl.
File metadata
- Download URL: fngradio-0.0.7-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
664d8b8eff1e12803bef777032ebd2b1316f870f6d96bdfb23de06c7c0ce88f5
|
|
| MD5 |
1a9af3456db04edca2cfac16a21ed4f8
|
|
| BLAKE2b-256 |
7ed5f5230b8d813eb2f01774864a909fa57faa3ebf0483fbee9dd6cc180ceb0f
|
Provenance
The following attestation bundles were made for fngradio-0.0.7-py3-none-any.whl:
Publisher:
ci.yml on de-code/fngradio
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fngradio-0.0.7-py3-none-any.whl -
Subject digest:
664d8b8eff1e12803bef777032ebd2b1316f870f6d96bdfb23de06c7c0ce88f5 - Sigstore transparency entry: 409611809
- Sigstore integration time:
-
Permalink:
de-code/fngradio@35c2d6295aa77333aa60e14548fbabda9f959ad6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/de-code
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@35c2d6295aa77333aa60e14548fbabda9f959ad6 -
Trigger Event:
push
-
Statement type: