Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -165,6 +165,13 @@ examples=[["I'm planning a vacation to Japan. Can you suggest a one-week itinera
|
|
| 165 |
["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
|
| 166 |
]
|
| 167 |
with gr.Blocks() as app:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
with gr.Row():
|
| 169 |
inp_query=gr.Textbox()
|
| 170 |
models_dd=gr.Dropdown(choices=[m for m in return_list],interactive=True)
|
|
|
|
| 165 |
["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
|
| 166 |
]
|
| 167 |
with gr.Blocks() as app:
|
| 168 |
+
gr.Markdown("""
|
| 169 |
+
graph TD
|
| 170 |
+
A[Start] -->B[Step 1]
|
| 171 |
+
B --> C[Step 2]
|
| 172 |
+
C --> D[Step 3] --> A
|
| 173 |
+
D --> E[Step 4]
|
| 174 |
+
E --> F[End]""")
|
| 175 |
with gr.Row():
|
| 176 |
inp_query=gr.Textbox()
|
| 177 |
models_dd=gr.Dropdown(choices=[m for m in return_list],interactive=True)
|