Fix indentation error
Browse files
app.py
CHANGED
|
@@ -27,8 +27,8 @@ def get_similar_quotes(question):
|
|
| 27 |
top5quotes = pd.DataFrame(data = similar_sentences, columns=["Quotes"], index=range(1,6))
|
| 28 |
return top5quotes
|
| 29 |
|
| 30 |
-
|
| 31 |
-
|
| 32 |
|
| 33 |
with gr.Blocks() as demo:
|
| 34 |
gr.Markdown("""
|
|
|
|
| 27 |
top5quotes = pd.DataFrame(data = similar_sentences, columns=["Quotes"], index=range(1,6))
|
| 28 |
return top5quotes
|
| 29 |
|
| 30 |
+
def main(question):
|
| 31 |
+
return ask_krishnamurti(question), get_similar_quotes(question)
|
| 32 |
|
| 33 |
with gr.Blocks() as demo:
|
| 34 |
gr.Markdown("""
|