镜像自地址
https://github.com/binary-husky/gpt_academic.git
已同步 2025-12-06 14:36:48 +00:00
13 行
362 B
Python
13 行
362 B
Python
import gradio as gr
|
|
from toolbox import get_conf
|
|
THEME, = get_conf('THEME')
|
|
|
|
if THEME == 'Chuanhu-Small-and-Beautiful':
|
|
from .green import adjust_theme, advanced_css
|
|
theme_declaration = "<h2 align=\"center\" class=\"small\">[Chuanhu-Small-and-Beautiful主题]</h2>"
|
|
else:
|
|
from .default import adjust_theme, advanced_css
|
|
theme_declaration = ""
|
|
|
|
|