Metadata-Version: 2.1
Name: gradio_gradioworkbook
Version: 0.0.17
Summary: Workbook 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
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Description-Content-Type: text/markdown

# gradio_gradioworkbook

A Custom Gradio component to build AI Notebooks powered by AIConfig.

## 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_gradioworkbook import GradioWorkbook

AICONFIG_FILE_PATH = "./example_aiconfig.json" #Can also be empty or None!
with gr.Blocks() as demo:
    GradioWorkbook(filepath=AICONFIG_FILE_PATH)

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

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