RayBe commited on
Commit
062413a
·
verified ·
1 Parent(s): 4963321

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -44,12 +44,12 @@ iface = gr.Interface(
44
  fn=generate_command,
45
  inputs=gr.Textbox(lines=2, placeholder="Enter a command..."),
46
  outputs=[
47
- gr.Textbox(label="Extracted Amount"),
48
  gr.Textbox(label="Action"),
49
  gr.Textbox(label="Currency"),
50
  gr.Textbox(label="Recipient"),
51
  ],
52
- title="Fixed Command Extractor",
53
  description="Extracts amount separately and displays action, currency, and recipient from model output."
54
  )
55
 
 
44
  fn=generate_command,
45
  inputs=gr.Textbox(lines=2, placeholder="Enter a command..."),
46
  outputs=[
47
+ gr.Textbox(label="Amount"),
48
  gr.Textbox(label="Action"),
49
  gr.Textbox(label="Currency"),
50
  gr.Textbox(label="Recipient"),
51
  ],
52
+ title="Intent Recognition Project",
53
  description="Extracts amount separately and displays action, currency, and recipient from model output."
54
  )
55