Spaces:
Runtime error
Runtime error
fix: missing component Textbook
Browse files
app.py
CHANGED
|
@@ -8,6 +8,15 @@ import random
|
|
| 8 |
|
| 9 |
from pathlib import Path
|
| 10 |
from typing import Callable, Literal
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
import gradio as gr
|
| 13 |
from gradio.helpers import special_args
|
|
|
|
| 8 |
|
| 9 |
from pathlib import Path
|
| 10 |
from typing import Callable, Literal
|
| 11 |
+
from gradio.components import (
|
| 12 |
+
Button,
|
| 13 |
+
Chatbot,
|
| 14 |
+
IOComponent,
|
| 15 |
+
Markdown,
|
| 16 |
+
State,
|
| 17 |
+
Textbox,
|
| 18 |
+
get_component_instance,
|
| 19 |
+
)
|
| 20 |
|
| 21 |
import gradio as gr
|
| 22 |
from gradio.helpers import special_args
|