rogkesavan commited on
Commit
cb99d36
1 Parent(s): 9eac11a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -18,8 +18,13 @@ iface = gr.Interface(
18
  fn=get_response,
19
  inputs=gr.Textbox(lines=2, placeholder="Enter your query here..."),
20
  outputs="text",
21
- title="Chat with Model",
22
- description="Enter a query and get a response from the model."
 
 
 
 
 
23
  )
24
 
25
  # Launch the Gradio app
 
18
  fn=get_response,
19
  inputs=gr.Textbox(lines=2, placeholder="Enter your query here..."),
20
  outputs="text",
21
+ title="Nidum.ai",
22
+ description=(
23
+ "Enter a query and get a response from the model.\n\n"
24
+ "**Note:** This is just a basic demo. It's a quantized version, so the output may be slightly different from the original unquantized version. "
25
+ "Additionally, this model doesn't have context memory, which means it doesn't remember previous interactions. "
26
+ "For business needs, please contact info@nidum.ai."
27
+ )
28
  )
29
 
30
  # Launch the Gradio app