Update app.py
Browse files
app.py
CHANGED
@@ -105,12 +105,23 @@ examples = [
|
|
105 |
]
|
106 |
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
demo = gr.ChatInterface(
|
109 |
fn=generate,
|
110 |
chatbot=mychatbot,
|
111 |
title="AIQ 코드파일럿: OpenLLM v1.12",
|
112 |
retry_btn=None,
|
113 |
undo_btn=None,
|
|
|
114 |
examples=examples
|
115 |
)
|
116 |
|
|
|
105 |
]
|
106 |
|
107 |
|
108 |
+
css = """
|
109 |
+
h1 {
|
110 |
+
font-size: 14px; /* 제목 글꼴 크기를 작게 설정 */
|
111 |
+
}
|
112 |
+
footer {
|
113 |
+
display: none; /* 푸터 숨기기 */
|
114 |
+
}
|
115 |
+
"""
|
116 |
+
|
117 |
+
|
118 |
demo = gr.ChatInterface(
|
119 |
fn=generate,
|
120 |
chatbot=mychatbot,
|
121 |
title="AIQ 코드파일럿: OpenLLM v1.12",
|
122 |
retry_btn=None,
|
123 |
undo_btn=None,
|
124 |
+
css=css,
|
125 |
examples=examples
|
126 |
)
|
127 |
|