expandme commited on
Commit
f6ad64a
1 Parent(s): 1dc9a74

I cant see text imput fileds - What wind.surf will do ?

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py CHANGED
@@ -60,6 +60,24 @@ demo = gr.ChatInterface(
60
  label="Top-p (nucleus sampling)",
61
  ),
62
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  )
64
 
65
 
 
60
  label="Top-p (nucleus sampling)",
61
  ),
62
  ],
63
+ theme=gr.themes.Soft(
64
+ primary_hue="blue",
65
+ secondary_hue="purple",
66
+ ),
67
+ css="""
68
+ .message-wrap {
69
+ border: 1px solid #e0e0e0;
70
+ border-radius: 8px;
71
+ padding: 8px;
72
+ margin: 8px 0;
73
+ }
74
+ #component-0 {
75
+ border: 2px solid #2196F3;
76
+ border-radius: 8px;
77
+ padding: 10px;
78
+ background-color: #f5f5f5;
79
+ }
80
+ """
81
  )
82
 
83