peterkros commited on
Commit
e22b7cf
·
1 Parent(s): f7294eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -31,10 +31,10 @@ markdown_text = """
31
  # Define the interface
32
  iface = gr.Interface(
33
  fn=predict,
34
- inputs=gr.inputs.Textbox(lines=2, placeholder="Enter Budget line here..."),
35
  outputs="text",
36
  title="COFOG Level 1 Classification",
37
- description=markdown_text # Add the markdown text to the description
38
  )
39
 
40
  # Run the interface
 
31
  # Define the interface
32
  iface = gr.Interface(
33
  fn=predict,
34
+ inputs=gr.components.Textbox(lines=2, placeholder="Enter Budget line here..."),
35
  outputs="text",
36
  title="COFOG Level 1 Classification",
37
+ description=markdown_text
38
  )
39
 
40
  # Run the interface