Spaces:
Sleeping
Sleeping
Update all
Browse files
app.py
CHANGED
@@ -10,7 +10,8 @@ def activeSermonGuideZone(buttonEvent):
|
|
10 |
#print("Button show " + buttonEvent.label)
|
11 |
return gr.update (interactive = True)
|
12 |
|
13 |
-
|
|
|
14 |
|
15 |
with gr.Blocks() as demo:
|
16 |
gr.Markdown("SermonLab AI Demo.")
|
@@ -256,7 +257,7 @@ with gr.Blocks() as demo:
|
|
256 |
outputs = [text_button]
|
257 |
)
|
258 |
|
259 |
-
text_button.click(fn =
|
260 |
|
261 |
if __name__ == "__main__":
|
262 |
llmBuilder = GeminiLLM()
|
|
|
10 |
#print("Button show " + buttonEvent.label)
|
11 |
return gr.update (interactive = True)
|
12 |
|
13 |
+
def showMessage():
|
14 |
+
return gr.Error(' No implemented yet !!!')
|
15 |
|
16 |
with gr.Blocks() as demo:
|
17 |
gr.Markdown("SermonLab AI Demo.")
|
|
|
257 |
outputs = [text_button]
|
258 |
)
|
259 |
|
260 |
+
text_button.click(fn = showMessage)
|
261 |
|
262 |
if __name__ == "__main__":
|
263 |
llmBuilder = GeminiLLM()
|