Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -6,9 +6,19 @@ client = InferenceClient(
|
|
6 |
)
|
7 |
|
8 |
CSS = """
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
"""
|
11 |
|
|
|
12 |
def format_prompt(message, history):
|
13 |
prompt = "<s>"
|
14 |
for user_prompt, bot_response in history:
|
|
|
6 |
)
|
7 |
|
8 |
CSS = """
|
9 |
+
body {
|
10 |
+
background-color: black;
|
11 |
+
}
|
12 |
+
.gradio-container {
|
13 |
+
background-color: black;
|
14 |
+
}
|
15 |
+
.chatbot {
|
16 |
+
background-color: black;
|
17 |
+
color: white; /* Optional: change text color to white for better visibility */
|
18 |
+
}
|
19 |
"""
|
20 |
|
21 |
+
|
22 |
def format_prompt(message, history):
|
23 |
prompt = "<s>"
|
24 |
for user_prompt, bot_response in history:
|