Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,7 @@ For more information on `huggingface_hub` Inference API support, please check th
|
|
6 |
"""
|
7 |
client = InferenceClient("T3lli/Iris")
|
8 |
|
|
|
9 |
|
10 |
def respond(
|
11 |
message,
|
@@ -66,7 +67,7 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
|
|
66 |
theme = "soft",
|
67 |
)"""
|
68 |
with gr.Blocks() as demo:
|
69 |
-
|
70 |
chat_interface = gr.ChatInterface(
|
71 |
respond,
|
72 |
title=title_input, # Dynamically set the title
|
|
|
6 |
"""
|
7 |
client = InferenceClient("T3lli/Iris")
|
8 |
|
9 |
+
name = "Elli"
|
10 |
|
11 |
def respond(
|
12 |
message,
|
|
|
67 |
theme = "soft",
|
68 |
)"""
|
69 |
with gr.Blocks() as demo:
|
70 |
+
title = name
|
71 |
chat_interface = gr.ChatInterface(
|
72 |
respond,
|
73 |
title=title_input, # Dynamically set the title
|