Add intro
Browse files
app.py
CHANGED
@@ -9,14 +9,13 @@ with gr.Blocks() as demo:
|
|
9 |
gr.Markdown(
|
10 |
"""
|
11 |
# Toolkit
|
12 |
-
|
13 |
-
<br>
|
14 |
-
<br>5 input variables and 10 tasks allowed (for now).
|
15 |
<br>
|
16 |
-
<br
|
17 |
-
<br
|
18 |
<br>
|
19 |
-
<br>
|
20 |
"""
|
21 |
)
|
22 |
for t in all_tasks.values():
|
|
|
9 |
gr.Markdown(
|
10 |
"""
|
11 |
# Toolkit
|
12 |
+
Assemble tasks to build an E2E application.
|
13 |
+
<br>There are 2 types of tasks.
|
|
|
14 |
<br>
|
15 |
+
<br>**AI Task**: Ask ChatGPT to do something for you. Eg, summarize a text.
|
16 |
+
<br>**Code Task**: ChatGPT will create a python function that will be executed on the fly. Eg, get the text from an url.
|
17 |
<br>
|
18 |
+
<br>Max 10 tasks allowed (for now).
|
19 |
"""
|
20 |
)
|
21 |
for t in all_tasks.values():
|