Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
from pipeline import run_with_chain
|
| 3 |
-
def ask_dailywellness(query: str)
|
| 4 |
return run_with_chain (query)
|
| 5 |
interface = gr. Interface (
|
| 6 |
fn=ask_dailywellness,
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
from pipeline import run_with_chain
|
| 3 |
+
def ask_dailywellness(query: str) -> str:
|
| 4 |
return run_with_chain (query)
|
| 5 |
interface = gr. Interface (
|
| 6 |
fn=ask_dailywellness,
|