lgaleana commited on
Commit
7a5c823
1 Parent(s): 3ce6c94
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -9,14 +9,13 @@ with gr.Blocks() as demo:
9
  gr.Markdown(
10
  """
11
  # Toolkit
12
- Define input variables to be used in your tasks.
13
- <br>Task outputs can be used in subsequent tasks.
14
- <br>5 input variables and 10 tasks allowed (for now).
15
  <br>
16
- <br>AI tasks call into ChatGPT to perform actions.
17
- <br>Chain inputs and tasks to build an E2E application.
18
  <br>
19
- <br>Example prompt: "Translate the following text into spanish and add {v0} more sentences: {t0}".
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():