sotirios-slv commited on
Commit
2e51b13
1 Parent(s): 8f4f347

Added in description

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -7,12 +7,19 @@ val_image = gr.Image("/file=val_speaking_transparent.gif")
7
 
8
  PLACEHOLDER = f"""
9
  <div style="padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center;">
10
- <img src={val_image} style="width: 80%; max-width: 550px; height: auto; opacity: 0.55; ">
11
  <h1 style="font-size: 28px; margin-bottom: 2px; opacity: 0.55;">Hi Jennifer, welcome to DTF</h1>
12
  <p style="font-size: 18px; margin-bottom: 2px; opacity: 0.65;">Ask me anything about working at here...</p>
13
  </div>.
14
  """
15
 
 
 
 
 
 
 
 
 
16
  TITLE = "Hi I'm Val the Voyager, welcome onboard!"
17
 
18
 
@@ -122,4 +129,5 @@ gr.ChatInterface(
122
  ],
123
  cache_examples=False,
124
  title=TITLE,
 
125
  ).launch(show_api=False)
 
7
 
8
  PLACEHOLDER = f"""
9
  <div style="padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center;">
 
10
  <h1 style="font-size: 28px; margin-bottom: 2px; opacity: 0.55;">Hi Jennifer, welcome to DTF</h1>
11
  <p style="font-size: 18px; margin-bottom: 2px; opacity: 0.65;">Ask me anything about working at here...</p>
12
  </div>.
13
  """
14
 
15
+ DESCRIPTION = """
16
+ You might find these links of interest
17
+
18
+ - [Read about our enterprise agreement](https://www.dtf.vic.gov.au/funds-programs-and-policies/victorian-public-service-enterprise-agreement-2020)
19
+ - [Here's the Victorian Government directory](https://www.vic.gov.au/victorian-government-directory)
20
+ - [Read guidance to making accessible content](https://www.vic.gov.au/make-content-accessible)
21
+ """
22
+
23
  TITLE = "Hi I'm Val the Voyager, welcome onboard!"
24
 
25
 
 
129
  ],
130
  cache_examples=False,
131
  title=TITLE,
132
+ description=DESCRIPTION,
133
  ).launch(show_api=False)