Metadata-Version: 2.1
Name: gradio_notebook
Version: 0.0.4
Summary: Notebook for interacting with models in AIConfig
Author: LastMile AI
License-Expression: MIT
Keywords: aiconfig,gradio-custom-component,gradio-template-Fallback,notebook,workbook
Requires-Python: >=3.8
Requires-Dist: aiconfig-extension-hugging-face>=0.0.6
Requires-Dist: asyncio
Requires-Dist: boto3
Requires-Dist: botocore
Requires-Dist: gradio<5.0,>=4.0
Requires-Dist: python-aiconfig>=1.1.18
Requires-Dist: requests
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Description-Content-Type: text/markdown

# gradio_notebook

A Custom Gradio component to build AI Notebooks powered by AIConfig. 
See https://aiconfig.lastmileai.dev/docs/gradio-notebook for full documentation. 

## Example usage

Please see the demo/app.py for full details, but generally all you need to do
is add these lines to your component:

```python
import gradio as gr
from gradio_notebook import GradioNotebook

with gr.Blocks() as demo:
    GradioNotebook()

demo.queue().launch()
```

Configure the default AIConfig for the notebook by specifying a path to the config:

```python
import gradio as gr
from gradio_notebook import GradioNotebook

with gr.Blocks() as demo:
    GradioNotebook(config_path="./my_app.aiconfig.json")

demo.queue().launch()
```

For the remaining commands for local development, please follow the
instructions from the `README-dev.md` file!
