taras5500 commited on
Commit
830db0d
1 Parent(s): b3de5d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +35 -4
app.py CHANGED
@@ -71,12 +71,43 @@ examples=[
71
  ["tell me about your day", "Messmer, the Impaler", "Messmer, son of Queen Marika the Eternal, was born with a dark serpent inside him, called the Abyssal Serpent, contained by Marika through a seal in place of one of his eyes. Constantly accompanied by winged snakes, Messmer and Commander Gaius acted as 'older brothers' to General Radahn. Before the Shattering, Marika tasked Messmer with purging the tower-dwelling people of the Land of Shadow. Even after being abandoned by Marika, he continued this purge with zeal. Among his army, Black Knight Commander Andreas and Black Knight Captain Huw, initially considered brothers-in-arms, eventually rebelled upon discovering his serpentine nature.","Marika",256 ],
72
  ["tell me about your day","Ada Wong","Ada Wong's early life is shrouded in mystery, with unconfirmed details about her ethnicity, nationality, and birth. She has mentioned a possibly fabricated story of being born around 1974 in Saigon, Vietnam, to a wealthy family that fled to the United States post-Vietnam War. As a young adult, she engaged in criminal activities and was eventually recruited by Albert Wesker for a bioweapons corporation known as 'the Organization.' Around 1997, she infiltrated the Umbrella Corporation's Arklay Laboratory, forming a relationship with Dr. John Clemens to gather information. During the 1998 t-Virus outbreak, Wong managed to escape undetected despite being present at the facility.","Leon",64]
73
  ]
74
- css = """
75
- #warning {background-color: #FFCCCB}
76
- .feedback textarea {font-size: 24px !important}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  """
78
 
79
- iface = gr.ChatInterface( css=css,
80
  fn=generate,
81
  chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
82
  additional_inputs=additional_inputs,
 
71
  ["tell me about your day", "Messmer, the Impaler", "Messmer, son of Queen Marika the Eternal, was born with a dark serpent inside him, called the Abyssal Serpent, contained by Marika through a seal in place of one of his eyes. Constantly accompanied by winged snakes, Messmer and Commander Gaius acted as 'older brothers' to General Radahn. Before the Shattering, Marika tasked Messmer with purging the tower-dwelling people of the Land of Shadow. Even after being abandoned by Marika, he continued this purge with zeal. Among his army, Black Knight Commander Andreas and Black Knight Captain Huw, initially considered brothers-in-arms, eventually rebelled upon discovering his serpentine nature.","Marika",256 ],
72
  ["tell me about your day","Ada Wong","Ada Wong's early life is shrouded in mystery, with unconfirmed details about her ethnicity, nationality, and birth. She has mentioned a possibly fabricated story of being born around 1974 in Saigon, Vietnam, to a wealthy family that fled to the United States post-Vietnam War. As a young adult, she engaged in criminal activities and was eventually recruited by Albert Wesker for a bioweapons corporation known as 'the Organization.' Around 1997, she infiltrated the Umbrella Corporation's Arklay Laboratory, forming a relationship with Dr. John Clemens to gather information. During the 1998 t-Virus outbreak, Wong managed to escape undetected despite being present at the facility.","Leon",64]
73
  ]
74
+
75
+ custom_css = """
76
+ /* Dark mode styles */
77
+ body, .panel, .panel input, .panel select, .panel textarea, .panel button {
78
+ background-color: #2e2e2e;
79
+ color: #e0e0e0;
80
+ }
81
+ .panel {
82
+ border: 1px solid #555;
83
+ }
84
+ .panel input, .panel select, .panel textarea, .panel button {
85
+ border: 1px solid #555;
86
+ background-color: #3e3e3e;
87
+ color: #e0e0e0;
88
+ }
89
+ .panel input:focus, .panel select:focus, .panel textarea:focus, .panel button:focus {
90
+ border-color: #777;
91
+ }
92
+ .chat-message {
93
+ background-color: #444;
94
+ color: #e0e0e0;
95
+ }
96
+ .chat-message.user {
97
+ background-color: #333;
98
+ }
99
+ .chat-message.bot {
100
+ background-color: #444;
101
+ }
102
+ .chatbot .chat-message {
103
+ border: 1px solid #555;
104
+ }
105
+ .chatbot .chat-message p {
106
+ color: #e0e0e0;
107
+ }
108
  """
109
 
110
+ iface = gr.ChatInterface(css=custom_css,
111
  fn=generate,
112
  chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
113
  additional_inputs=additional_inputs,