brainsqueeze commited on
Commit
d738003
·
verified ·
1 Parent(s): 7e2754c

copy changes

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +4 -4
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Ask Candid
3
  short_description: AI assistant for philanthropy and the social sector
4
  emoji: 💬
5
  colorFrom: blue
 
1
  ---
2
+ title: Candid's AI assistant
3
  short_description: AI assistant for philanthropy and the social sector
4
  emoji: 💬
5
  colorFrom: blue
app.py CHANGED
@@ -93,11 +93,11 @@ def execute(
93
 
94
 
95
  def build_rag_chat() -> Tuple[LoggedComponents, gr.Blocks]:
96
- with gr.Blocks(theme=gr.themes.Soft(), title="Chat") as demo:
97
 
98
  gr.Markdown(
99
  """
100
- <h1>Ask Candid</h1>
101
 
102
  <p>
103
  Please read the <a
@@ -217,10 +217,10 @@ def build_app():
217
  feedback
218
  ],
219
  tab_names=[
220
- "Ask Candid",
221
  "Feedback"
222
  ],
223
- title="Ask Candid Assistant",
224
  theme=gr.themes.Soft(),
225
  css=css_chat,
226
  )
 
93
 
94
 
95
  def build_rag_chat() -> Tuple[LoggedComponents, gr.Blocks]:
96
+ with gr.Blocks(theme=gr.themes.Soft(), title="Candid's AI assistant") as demo:
97
 
98
  gr.Markdown(
99
  """
100
+ <h1>Candid's AI assistant</h1>
101
 
102
  <p>
103
  Please read the <a
 
217
  feedback
218
  ],
219
  tab_names=[
220
+ "Candid's AI assistant",
221
  "Feedback"
222
  ],
223
+ title="Candid's AI assistant",
224
  theme=gr.themes.Soft(),
225
  css=css_chat,
226
  )