forked from Ikaros-521/AI-Vtuber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webui.py
4439 lines (3929 loc) · 352 KB
/
webui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from nicegui import ui, app
import sys, os, json, subprocess, importlib, re, threading, signal
import logging, traceback
import time
import asyncio
# from functools import partial
import http.server
import socketserver
from utils.config import Config
from utils.common import Common
from utils.logger import Configure_logger
from utils.audio import Audio
"""
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@.:;;;++;;;;:,@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@:;+++++;;++++;;;.@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@:++++;;;;;;;;;;+++;,@@@@@@@@@@@@@@@@@
@@@@@@@@@@@.;+++;;;;;;;;;;;;;;++;:@@@@@@@@@@@@@@@@
@@@@@@@@@@;+++;;;;;;;;;;;;;;;;;;++;:@@@@@@@@@@@@@@
@@@@@@@@@:+++;;;;;;;;;;;;;;;;;;;;++;.@@@@@@@@@@@@@
@@@@@@@@;;+;;;;;;;;;;;;;;;;;;;;;;;++:@@@@@@@@@@@@@
@@@@@@@@;+;;;;:::;;;;;;;;;;;;;;;;:;+;,@@@@@@@@@@@@
@@@@@@@:+;;:;;:::;:;;:;;;;::;;:;:::;+;.@@@@@@@@@@@
@@@@@@.;+;::;:,:;:;;+:++:;:::+;:::::++:+@@@@@@@@@@
@@@@@@:+;;:;;:::;;;+%;*?;;:,:;*;;;;:;+;:@@@@@@@@@@
@@@@@@;;;+;;+;:;;;+??;*?++;,:;+++;;;:++:@@@@@@@@@@
@@@@@.++*+;;+;;;;+?;?**??+;:;;+.:+;;;;+;;@@@@@@@@@
@@@@@,+;;;;*++*;+?+;**;:?*;;;;*:,+;;;;+;,@@@@@@@@@
@@@@@,:,+;+?+?++?+;,?#%*??+;;;*;;:+;;;;+:@@@@@@@@@
@@@@@@@:+;*?+?#%;;,,?###@#+;;;*;;,+;;;;+:@@@@@@@@@
@@@@@@@;+;??+%#%;,,,;SSS#S*+++*;..:+;?;+;@@@@@@@@@
@@@@@@@:+**?*?SS,,,,,S#S#+***?*;..;?;**+;@@@@@@@@@
@@@@@@@:+*??*??S,,,,,*%SS+???%++;***;+;;;.@@@@@@@@
@@@@@@@:*?*;*+;%:,,,,;?S?+%%S?%+,:?;+:,,,@@@@@@@@
@@@@@@@,*?,;+;+S:,,,,%?+;S%S%++:+??+:,,,:@@@@@@@@
@@@@@@@,:,@;::;+,,,,,+?%*+S%#?*???*;,,,,,.@@@@@@@@
@@@@@@@@:;,::;;:,,,,,,,,,?SS#??*?+,.,,,:,@@@@@@@@@
@@@@@@;;+;;+:,:%?%*;,,,,SS#%*??%,.,,,,,:@@@@@@@@@
@@@@@.+++,++:;???%S?%;.+#####??;.,,,,,,:@@@@@@@@@
@@@@@:++::??+S#??%#??S%?#@#S*+?*,,,,,,:,@@@@@@@@@@
@@@@@:;;:*?;+%#%?S#??%SS%+#%..;+:,,,,,,@@@@@@@@@@@
@@@@@@,,*S*;?SS?%##%?S#?,.:#+,,+:,,,,,,@@@@@@@@@@@
@@@@@@@;%?%#%?*S##??##?,..*#,,+:,,;*;.@@@@@@@@@@@
@@@@@@.*%??#S*?S#@###%;:*,.:#:,+;:;*+:@@@@@@@@@@@@
@@@@@@,%S??SS%##@@#%S+..;;.,#*;???*?+++:@@@@@@@@@@
@@@@@@:S%??%####@@S,,*,.;*;+#*;+?%??#S%+.@@@@@@@@@
@@@@@@:%???%@###@@?,,:**S##S*;.,%S?;+*?+.,..@@@@@@
@@@@@@;%??%#@###@@#:.;@@#@%%,.,%S*;++*++++;.@@@@@
@@@@@@,%S?S@@###@@@%+#@@#@?;,.:?;??++?%?***+.@@@@@
@@@@@@.*S?S####@@####@@##@?..:*,+:??**%+;;;;..@@@@
@@@@@@:+%?%####@@####@@#@%;:.;;:,+;?**;++;,:;:,@@@
@@@@@@;;*%?%@##@@@###@#S#*:;*+,;.+***?******+:.@@@
@@@@@@:;:??%@###%##@#%++;+*:+;,:;+%?*;+++++;:.@@@@
@@@@@@.+;:?%@@#%;+S*;;,:::**+,;:%??*+.@....@@@@@@@
@@@@@@@;*::?#S#S+;,..,:,;:?+?++*%?+::@@@@@@@@@@@@@
@@@@@@@.+*+++?%S++...,;:***??+;++:.@@@@@@@@@@@@@@@
@@@@@@@@:::..,;+*+;;+*?**+;;;+;:.@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@,+*++;;:,..@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@::,.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
"""
"""
全局变量
"""
# 创建一个全局变量,用于表示程序是否正在运行
running_flag = False
# 创建一个子进程对象,用于存储正在运行的外部程序
running_process = None
# 定义一个标志变量,用来追踪定时器的运行状态
loop_screenshot_timer_running = False
loop_screenshot_timer = None
common = None
config = None
audio = None
my_handle = None
config_path = None
web_server_port = 12345
# 聊天记录计数
scroll_area_chat_box_chat_message_num = 0
# 聊天记录最多保留100条
scroll_area_chat_box_chat_message_max_num = 100
"""
初始化基本配置
"""
def init():
global config_path, config, common, audio
common = Common()
if getattr(sys, 'frozen', False):
# 当前是打包后的可执行文件
bundle_dir = getattr(sys, '_MEIPASS', os.path.abspath(os.path.dirname(sys.executable)))
file_relative_path = os.path.dirname(os.path.abspath(bundle_dir))
else:
# 当前是源代码
file_relative_path = os.path.dirname(os.path.abspath(__file__))
# logging.info(file_relative_path)
# 初始化文件夹
def init_dir():
# 创建日志文件夹
log_dir = os.path.join(file_relative_path, 'log')
if not os.path.exists(log_dir):
os.makedirs(log_dir)
# 创建音频输出文件夹
audio_out_dir = os.path.join(file_relative_path, 'out')
if not os.path.exists(audio_out_dir):
os.makedirs(audio_out_dir)
# # 创建配置文件夹
# config_dir = os.path.join(file_relative_path, 'config')
# if not os.path.exists(config_dir):
# os.makedirs(config_dir)
init_dir()
# 配置文件路径
config_path = os.path.join(file_relative_path, 'config.json')
audio = Audio(config_path, 2)
# 日志文件路径
file_path = "./log/log-" + common.get_bj_time(1) + ".txt"
Configure_logger(file_path)
# 获取 httpx 库的日志记录器
httpx_logger = logging.getLogger("httpx")
# 设置 httpx 日志记录器的级别为 WARNING
httpx_logger.setLevel(logging.WARNING)
# 获取特定库的日志记录器
watchfiles_logger = logging.getLogger("watchfiles")
# 设置日志级别为WARNING或更高,以屏蔽INFO级别的日志消息
watchfiles_logger.setLevel(logging.WARNING)
logging.debug("配置文件路径=" + str(config_path))
# 实例化配置类
config = Config(config_path)
init()
# 暗夜模式
dark = ui.dark_mode()
"""
通用函数
"""
def textarea_data_change(data):
"""
字符串数组数据格式转换
"""
tmp_str = ""
for tmp in data:
tmp_str = tmp_str + tmp + "\n"
return tmp_str
# web服务线程
async def web_server_thread(web_server_port):
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", web_server_port), Handler) as httpd:
logging.info(f"Web运行在端口:{web_server_port}")
logging.info(f"可以直接访问Live2D页, http://127.0.0.1:{web_server_port}/Live2D/")
httpd.serve_forever()
"""
.@@@@@ @@@@@.
.@@@@@ @@@@@.
]]]]] .]]]]` .]]]]` ,]@@@@@\` .@@@@@,/@@@\` .]]]]] ]]]]]` ]]]]].
=@@@@^ =@@@@@` =@@@@. =@@@@@@@@@@@\ .@@@@@@@@@@@@@ *@@@@@ @@@@@^ @@@@@.
=@@@@ ,@@@@@@@ .@@@@` =@@@@^ =@@@@^ .@@@@@` =@@@@^ *@@@@@ @@@@@^ @@@@@.
@@@@^@@@@\@@@^=@@@^ @@@@@@@@@@@@@@@ .@@@@@ =@@@@@ *@@@@@ @@@@@^ @@@@@.
,@@@@@@@^ \@@@@@@@ =@@@@^ .@@@@@. =@@@@^ *@@@@@ .@@@@@^ @@@@@.
=@@@@@@ .@@@@@@. \@@@@@]/@@@@@` .@@@@@@]/@@@@@. .@@@@@@@@@@@@@^ @@@@@.
\@@@@` =@@@@^ ,\@@@@@@@@[ .@@@@^\@@@@@[ .\@@@@@[=@@@@^ @@@@@.
"""
# 配置
webui_ip = config.get("webui", "ip")
webui_port = config.get("webui", "port")
webui_title = config.get("webui", "title")
# CSS
theme_choose = config.get("webui", "theme", "choose")
tab_panel_css = config.get("webui", "theme", "list", theme_choose, "tab_panel")
card_css = config.get("webui", "theme", "list", theme_choose, "card")
button_bottom_css = config.get("webui", "theme", "list", theme_choose, "button_bottom")
button_bottom_color = config.get("webui", "theme", "list", theme_choose, "button_bottom_color")
button_internal_css = config.get("webui", "theme", "list", theme_choose, "button_internal")
button_internal_color = config.get("webui", "theme", "list", theme_choose, "button_internal_color")
switch_internal_css = config.get("webui", "theme", "list", theme_choose, "switch_internal")
echart_css = config.get("webui", "theme", "list", theme_choose, "echart")
def goto_func_page():
"""
跳转到功能页
"""
global audio
"""
=@@^ ,@@@^ .@@@. ..... =@@. ]@\ ,]]]]]]]]]]]]]]]. .]]]]]]]]]]]]]]]]]]]] ,]]]]]]]]]]]]]]]]]` ,/. @@@^ /] ,@@@.
=@@^ .@@@@@@@@@@@@@@^ /@@\]]@@@@@=@@@@@@@@@. \@@@`=@@@@@@@@@@@@@@@. .@@@@@@@@@@@@@@@@@@@@ =@@@@@@@@@@@@@@@@@^ .\@@^@@@\@@@`.@@@^
@@@@@@@^@@@@@@@@@@@@@@^ =@@@@@^ =@@\]]]/@@]]@@]. =@/`=@@^ .@@@ .@@@. .@@@^ @@@^ =@@@ ,/@@@@/` =@@@@@@@@@@@^=@@@@@@@@@.
@@@@@@@^@@@^@@\` =@@^.@@@]]]`=@@^=@@@@@@@@@@@.]]]]` =@@^=@@@@@@@^@@@. .@@@\]]]]@@@\]]]]/@@@ @@@\/@\..@@@@[./@/@@@. ,[[\@@@@/[[[\@@@`..@@@`
=@@^ ,]]]/@@@]]]]]]]].\@@@@@^@@@OO=@@@@@@@@@..@@@@^ =@@^]]]@@@]]`@@@. .@@@@@@@@@@@@@@@@@@@@ @@@^=@@@^@@@^/@@@\@@@..]@@@@@@@@@@]@@@@^ .@@@.
=@@@@=@@@@@@@@@@@@@@@. =@@^ .OO@@@.[[\@@[[[[. =@@^ =@@^@@@@@@@@^@@@. .@@@^ @@@^ =@@@ @@@^ .`,]@@@^`,` =@@@. \@/.]@@@^,@@@@@@\ =@@^
.@@@@@@@. .@@@` /@@/ .@@@@@@@,.=@@=@@@@@@@@@^ =@@^,=@@^=@@@@@@@.@@@. .@@@\]]]]@@@\]]]]/@@@ @@@^]@@@@@@@@@@@]=@@@. ]]]@@@\]]]]] .=@@\@@@.
@@\@@^ .@@@\. /@@@. =@@^ =@\@@^.../@@..... =@@@@=@@^=@@[[\@@.@@@. .@@@@@@@@@@@@@@@@@@@@ @@@@@@/..@@@^,@@@@@@@. O@@@@@@@@@@@ .@@@@@^
=@@^ ,\@@@@@@@@. =@@^/^\@@@`@@@@@@@@@@^ /@@@/@@@`=@@OO@@@.@@@. =@@@` @@@^ =@@@ @@@^ \@@@@@^ .=@@@. .@@@@\`/@@/ /@@@\.
=@@^ ,/@@@@@@@@] =@@@@^/@@@@]` =@@. .\@/.=@@@ =@@[[[[[.@@@. /@@@ @@@^ ./@@@ @@@^.............=@@@. O@@@@@@\`,/@@@@@@@@`
@@@@@^.@@@@@@@/..[@@@@/. ,@@`/@@@`[@@@@@@@@@@@@. /@@@^ =@@@@@@. /@@@^ @@@^,@@@@@@^ @@@@@@@@@@@@@@@@@@@@@..\@@@@@[,\@@\@@@@` ,@@@^
,[[[. .O[[. [` ,/ ...... ,^ .[[[[` ,` .... [[[[` ,[[[. .[. ,/. .`
"""
# 创建一个函数,用于运行外部程序
def run_external_program(config_path="config.json", type="webui"):
global running_flag, running_process
if running_flag:
if type == "webui":
ui.notify(position="top", type="warning", message="运行中,请勿重复运行")
return
try:
running_flag = True
# 在这里指定要运行的程序和参数
# 例如,运行一个名为 "bilibili.py" 的 Python 脚本
# running_process = subprocess.Popen(["python", f"{select_platform.value}.py"])
running_process = subprocess.Popen(["python", f"main.py"])
if type == "webui":
ui.notify(position="top", type="positive", message="程序开始运行")
logging.info("程序开始运行")
return {"code": 200, "msg": "程序开始运行"}
except Exception as e:
if type == "webui":
ui.notify(position="top", type="negative", message=f"错误:{e}")
logging.error(traceback.format_exc())
running_flag = False
return {"code": -1, "msg": f"运行失败!{e}"}
# 定义一个函数,用于停止正在运行的程序
def stop_external_program(type="webui"):
global running_flag, running_process
if running_flag:
try:
running_process.terminate() # 终止子进程
running_flag = False
if type == "webui":
ui.notify(position="top", type="positive", message="程序已停止")
logging.info("程序已停止")
except Exception as e:
if type == "webui":
ui.notify(position="top", type="negative", message=f"停止错误:{e}")
logging.error(f"停止错误:{e}")
return {"code": -1, "msg": f"重启失败!{e}"}
# 开关灯
def change_light_status(type="webui"):
if dark.value:
button_light.set_text("关灯")
else:
button_light.set_text("开灯")
dark.toggle()
# 重启
def restart_application(type="webui"):
try:
# 先停止运行
stop_external_program(type)
logging.info(f"重启webui")
if type == "webui":
ui.notify(position="top", type="ongoing", message=f"重启中...")
python = sys.executable
os.execl(python, python, *sys.argv) # Start a new instance of the application
except Exception as e:
logging.error(traceback.format_exc())
return {"code": -1, "msg": f"重启失败!{e}"}
# 恢复出厂配置
def factory(src_path='config.json.bak', dst_path='config.json', type="webui"):
# src_path = 'config.json.bak'
# dst_path = 'config.json'
try:
with open(src_path, 'r', encoding="utf-8") as source:
with open(dst_path, 'w', encoding="utf-8") as destination:
destination.write(source.read())
logging.info("恢复出厂配置成功!")
if type == "webui":
ui.notify(position="top", type="positive", message=f"恢复出厂配置成功!")
# 重启
restart_application()
return {"code": 200, "msg": "恢复出厂配置成功!"}
except Exception as e:
logging.error(f"恢复出厂配置失败!\n{e}")
if type == "webui":
ui.notify(position="top", type="negative", message=f"恢复出厂配置失败!\n{e}")
return {"code": -1, "msg": f"恢复出厂配置失败!\n{e}"}
# openai 测试key可用性
def test_openai_key():
data_json = {
"base_url": input_openai_api.value,
"api_keys": textarea_openai_api_key.value,
"model": select_chatgpt_model.value,
"temperature": round(float(input_chatgpt_temperature.value), 1),
"max_tokens": int(input_chatgpt_max_tokens.value),
"top_p": round(float(input_chatgpt_top_p.value), 1),
"presence_penalty": round(float(input_chatgpt_presence_penalty.value), 1),
"frequency_penalty": round(float(input_chatgpt_frequency_penalty.value), 1),
"preset": input_chatgpt_preset.value
}
if common.test_openai_key(data_json):
ui.notify(position="top", type="positive", message=f"测试通过!")
else:
ui.notify(position="top", type="negative", message=f"测试失败!")
# GPT-SoVITS加载模型
def gpt_sovits_set_model():
try:
from urllib.parse import urljoin
API_URL = urljoin(input_gpt_sovits_api_ip_port.value, '/set_model')
data_json = {
"gpt_model_path": input_gpt_sovits_gpt_model_path.value,
"sovits_model_path": input_gpt_sovits_sovits_model_path.value
}
resp_data = common.send_request(API_URL, "POST", data_json, resp_data_type="content")
if resp_data is None:
content = "gpt_sovits加载模型失败,请查看双方日志排查问题"
logging.error(content)
ui.notify(position="top", type="negative", message=content)
else:
content = "gpt_sovits加载模型成功"
logging.info(content)
ui.notify(position="top", type="positive", message=content)
except Exception as e:
logging.error(traceback.format_exc())
logging.error(f'gpt_sovits未知错误: {e}')
ui.notify(position="top", type="negative", message=f'gpt_sovits未知错误: {e}')
# 页面滑到顶部
def scroll_to_top():
# 这段JavaScript代码将页面滚动到顶部
ui.run_javascript("window.scrollTo(0, 0);")
# 显示聊天数据的滚动框
scroll_area_chat_box = None
# 处理数据 显示聊天记录
def data_handle_show_chat_log(data_json):
global scroll_area_chat_box_chat_message_num
if data_json["type"] == "llm":
if data_json["data"]["content_type"] == "question":
name = data_json["data"]['username']
avatar = 'https://robohash.org/ui'
else:
name = data_json["data"]['type']
avatar = "http://127.0.0.1:8081/favicon.ico"
with scroll_area_chat_box:
ui.chat_message(data_json["data"]["content"],
name=name,
stamp=data_json["data"]["timestamp"],
avatar=avatar
)
scroll_area_chat_box_chat_message_num += 1
if scroll_area_chat_box_chat_message_num > scroll_area_chat_box_chat_message_max_num:
scroll_area_chat_box.remove(0)
scroll_area_chat_box.scroll_to(percent=1, duration=0.2)
"""
/@@@@@@@@ @@@@@@@@@@@@@@@]. =@@@@@@@
=@@@@@@@@@^ @@@@@@@@@@@@@@@@@@` =@@@@@@@
,@@@@@@@@@@@` @@@@@@@@@@@@@@@@@@@^ =@@@@@@@
.@@@@@@\@@@@@@. @@@@@@@^ .\@@@@@@\ =@@@@@@@
/@@@@@/ \@@@@@\ @@@@@@@^ =@@@@@@@ =@@@@@@@
=@@@@@@. .@@@@@@^ @@@@@@@\]]]@@@@@@@@^ =@@@@@@@
,@@@@@@^ =@@@@@@` @@@@@@@@@@@@@@@@@@/ =@@@@@@@
.@@@@@@@@@@@@@@@@@@@. @@@@@@@@@@@@@@@@/` =@@@@@@@
/@@@@@@@@@@@@@@@@@@@\ @@@@@@@^ =@@@@@@@
=@@@@@@@@@@@@@@@@@@@@@^ @@@@@@@^ =@@@@@@@
,@@@@@@@. ,@@@@@@@` @@@@@@@^ =@@@@@@@
@@@@@@@^ =@@@@@@@. @@@@@@@^ =@@@@@@@
"""
from starlette.requests import Request
"""
系统命令
type 命令类型(run/stop/restart/factory)
data 传入的json
data_json = {
"type": "命令名",
"data": {
"key": "value"
}
}
return:
{"code": 200, "msg": "成功"}
{"code": -1, "msg": "失败"}
"""
@app.post('/sys_cmd')
async def sys_cmd(request: Request):
try:
data_json = await request.json()
logging.info(f'sys_cmd接口 收到数据:{data_json}')
logging.info(f"开始执行 {data_json['type']}命令...")
resp_json = {}
if data_json['type'] == 'run':
"""
{
"type": "run",
"data": {
"config_path": "config.json"
}
}
"""
# 运行
resp_json = run_external_program(data_json['data']['config_path'], type="api")
elif data_json['type'] =='stop':
"""
{
"type": "stop",
"data": {
"config_path": "config.json"
}
}
"""
# 停止
resp_json = stop_external_program(type="api")
elif data_json['type'] =='restart':
"""
{
"type": "restart",
"api_type": "webui",
"data": {
"config_path": "config.json"
}
}
"""
# 重启
resp_json = restart_application(type=data_json['api_type'])
elif data_json['type'] =='factory':
"""
{
"type": "factory",
"api_type": "webui",
"data": {
"src_path": "config.json.bak",
"dst_path": "config.json"
}
}
"""
# 恢复出厂
resp_json = factory(data_json['data']['src_path'], data_json['data']['dst_path'], type="api")
return resp_json
except Exception as e:
logging.error(traceback.format_exc())
return {"code": -1, "msg": f"{data_json['type']}执行失败!{e}"}
"""
数据回调
data 传入的json
data_json = {
"type": "数据类型(llm)",
"data": {
"type": "LLM类型",
"username": "用户名",
"content_type": "内容的类型(question/answer)",
"content": "回复内容",
"timestamp": "时间戳"
}
}
return:
{"code": 200, "msg": "成功"}
{"code": -1, "msg": "失败"}
"""
@app.post('/callback')
async def callback(request: Request):
try:
data_json = await request.json()
logging.info(f'callback接口 收到数据:{data_json}')
data_handle_show_chat_log(data_json)
return {"code": 200, "msg": "成功"}
except Exception as e:
logging.error(traceback.format_exc())
return {"code": -1, "msg": f"失败!{e}"}
"""
./@\]
,@@@@\* \@@^ ,]]]
[[[* /@@]@@@@@/[[\@@@@/
]]@@@@@@\ /@@^ @@@^]]`[[
]]@@@@@@@[[* ,[` /@@\@@@@@@@@@@@@@@^
[[[[[` @@@/ \@@@@[[[\@@^ =@@/
.\@@\* *@@@` [\@@@@@@\`
,@@\=@@@ ,]@@@/` ,\@@@@*
,@@@@` ,[[[[` =@@@ ]]/O
/@@@@@` ]]]@@@@@@@@@/[[[[[`
,@@@@[ \@@@\` ./@@@@@@@]
,]/@@@@/` \@@@@@\]] ,@@@/,@@^ \@@@\]
,@@@@@@@@/[* ,/@@/* /@@^ [@@@@@@@\*
,@@^
"""
# 文案页-增加
def copywriting_add():
data_len = len(copywriting_config_var)
tmp_config = {
"file_path": f"data/copywriting{int(data_len / 5) + 1}/",
"audio_path": f"out/copywriting{int(data_len / 5) + 1}/",
"continuous_play_num": 2,
"max_play_time": 10.0,
"play_list": []
}
with copywriting_config_card.style(card_css):
with ui.row():
copywriting_config_var[str(data_len)] = ui.input(label=f"文案存储路径#{int(data_len / 5) + 1}", value=tmp_config["file_path"], placeholder='文案文件存储路径。不建议更改。').style("width:200px;")
copywriting_config_var[str(data_len + 1)] = ui.input(label=f"音频存储路径#{int(data_len / 5) + 1}", value=tmp_config["audio_path"], placeholder='文案音频文件存储路径。不建议更改。').style("width:200px;")
copywriting_config_var[str(data_len + 2)] = ui.input(label=f"连续播放数#{int(data_len / 5) + 1}", value=tmp_config["continuous_play_num"], placeholder='文案播放列表中连续播放的音频文件个数,如果超过了这个个数就会切换下一个文案列表').style("width:200px;")
copywriting_config_var[str(data_len + 3)] = ui.input(label=f"连续播放时间#{int(data_len / 5) + 1}", value=tmp_config["max_play_time"], placeholder='文案播放列表中连续播放音频的时长,如果超过了这个时长就会切换下一个文案列表').style("width:200px;")
copywriting_config_var[str(data_len + 4)] = ui.textarea(label=f"播放列表#{int(data_len / 5) + 1}", value=textarea_data_change(tmp_config["play_list"]), placeholder='此处填写需要播放的音频文件全名,填写完毕后点击 保存配置。文件全名从音频列表中复制,换行分隔,请勿随意填写').style("width:500px;")
# 文案页-删除
def copywriting_del(index):
try:
copywriting_config_card.remove(int(index) - 1)
# 删除操作
keys_to_delete = [str(5 * (int(index) - 1) + i) for i in range(5)]
for key in keys_to_delete:
if key in copywriting_config_var:
del copywriting_config_var[key]
# 重新编号剩余的键
updates = {}
for key in sorted(copywriting_config_var.keys(), key=int):
new_key = str(int(key) - 5 if int(key) > int(keys_to_delete[-1]) else key)
updates[new_key] = copywriting_config_var[key]
# 应用更新
copywriting_config_var.clear()
copywriting_config_var.update(updates)
except Exception as e:
ui.notify(position="top", type="negative", message=f"错误,索引值配置有误:{e}")
logging.error(traceback.format_exc())
# 文案页-加载文本
def copywriting_text_load():
copywriting_text_path = input_copywriting_text_path.value
if "" == copywriting_text_path:
logging.warning(f"请输入 文案文本路径喵~")
ui.notify(position="top", type="warning", message="请输入 文案文本路径喵~")
return
# 传入完整文件路径 绝对或相对
logging.info(f"准备加载 文件:[{copywriting_text_path}]")
new_file_path = os.path.join(copywriting_text_path)
content = common.read_file_return_content(new_file_path)
if content is None:
logging.error(f"读取失败!请检测配置、文件路径、文件名")
ui.notify(position="top", type="negative", message="读取失败!请检测配置、文件路径、文件名")
return
# 数据写入文本输入框中
textarea_copywriting_text.value = content
logging.info(f"成功加载文案:{copywriting_text_path}")
ui.notify(position="top", type="positive", message=f"成功加载文案:{copywriting_text_path}")
# 文案页-保存文案
def copywriting_save_text():
content = textarea_copywriting_text.value
copywriting_text_path = input_copywriting_text_path.value
if "" == copywriting_text_path:
logging.warning(f"请输入 文案文本路径喵~")
ui.notify(position="top", type="warning", message="请输入 文案文本路径喵~")
return
new_file_path = os.path.join(copywriting_text_path)
if True == common.write_content_to_file(new_file_path, content):
ui.notify(position="top", type="positive", message=f"保存成功~")
else:
ui.notify(position="top", type="negative", message=f"保存失败!请查看日志排查问题")
# 文案页-合成音频
async def copywriting_audio_synthesis():
ui.notify(position="top", type="warning", message="文案音频合成中,将会阻塞其他任务运行,请勿做其他操作,查看日志情况,耐心等待")
logging.warning("文案音频合成中,将会阻塞其他任务运行,请勿做其他操作,查看日志情况,耐心等待")
copywriting_text_path = input_copywriting_text_path.value
copywriting_audio_save_path = input_copywriting_audio_save_path.value
audio_synthesis_type = select_copywriting_audio_synthesis_type.value
file_path = await audio.copywriting_synthesis_audio(copywriting_text_path, copywriting_audio_save_path, audio_synthesis_type)
if file_path:
ui.notify(position="top", type="positive", message=f"文案音频合成成功,存储于:{file_path}")
else:
ui.notify(position="top", type="negative", message=f"文案音频合成失败!请查看日志排查问题")
return
def clear_copywriting_audio_card(file_path):
copywriting_audio_card.clear()
if common.del_file(file_path):
ui.notify(position="top", type="positive", message=f"删除文件成功:{file_path}")
else:
ui.notify(position="top", type="negative", message=f"删除文件失败:{file_path}")
# 清空card
copywriting_audio_card.clear()
tmp_label = ui.label(f"文案音频合成成功,存储于:{file_path}")
tmp_label.move(copywriting_audio_card)
audio_copywriting = ui.audio(src=file_path)
audio_copywriting.move(copywriting_audio_card)
button_copywriting_audio_del = ui.button('删除音频', on_click=lambda: clear_copywriting_audio_card(file_path), color=button_internal_color).style(button_internal_css)
button_copywriting_audio_del.move(copywriting_audio_card)
# 文案页-循环播放
def copywriting_loop_play():
if running_flag != 1:
ui.notify(position="top", type="warning", message=f"请先点击“一键运行”,然后再进行播放")
return
logging.info("开始循环播放文案~")
ui.notify(position="top", type="positive", message="开始循环播放文案~")
audio.unpause_copywriting_play()
# 文案页-暂停播放
def copywriting_pause_play():
if running_flag != 1:
ui.notify(position="top", type="warning", message=f"请先点击“一键运行”,然后再进行暂停")
return
audio.pause_copywriting_play()
logging.info("暂停文案完毕~")
ui.notify(position="top", type="positive", message="暂停文案完毕~")
"""
动态文案
"""
# 动态文案-增加
def trends_copywriting_add():
data_len = len(trends_copywriting_copywriting_var)
tmp_config = {
"folder_path": "",
"prompt_change_enable": False,
"prompt_change_content": ""
}
with trends_copywriting_config_card.style(card_css):
with ui.row():
trends_copywriting_copywriting_var[str(data_len)] = ui.input(label=f"文案路径#{int(data_len / 3) + 1}", value=tmp_config["folder_path"], placeholder='文案文件存储的文件夹路径').style("width:200px;")
trends_copywriting_copywriting_var[str(data_len + 1)] = ui.switch(text=f"提示词转换#{int(data_len / 3) + 1}", value=tmp_config["prompt_change_enable"])
trends_copywriting_copywriting_var[str(data_len + 2)] = ui.input(label=f"提示词转换内容#{int(data_len / 3) + 1}", value=tmp_config["prompt_change_content"], placeholder='使用此提示词内容对文案内容进行转换后再进行合成,使用的LLM为聊天类型配置').style("width:500px;")
# 动态文案-删除
def trends_copywriting_del(index):
try:
trends_copywriting_config_card.remove(int(index) - 1)
# 删除操作
keys_to_delete = [str(3 * (int(index) - 1) + i) for i in range(3)]
for key in keys_to_delete:
if key in trends_copywriting_copywriting_var:
del trends_copywriting_copywriting_var[key]
# 重新编号剩余的键
updates = {}
for key in sorted(trends_copywriting_copywriting_var.keys(), key=int):
new_key = str(int(key) - 3 if int(key) > int(keys_to_delete[-1]) else key)
updates[new_key] = trends_copywriting_copywriting_var[key]
# 应用更新
trends_copywriting_copywriting_var.clear()
trends_copywriting_copywriting_var.update(updates)
except Exception as e:
ui.notify(position="top", type="negative", message=f"错误,索引值配置有误:{e}")
logging.error(traceback.format_exc())
"""
按键/文案映射
"""
def key_mapping_add():
data_len = len(key_mapping_config_var)
tmp_config = {
"keywords": [],
"gift": [],
"keys": [],
"similarity": 1,
"copywriting": []
}
with key_mapping_config_card.style(card_css):
with ui.row():
key_mapping_config_var[str(data_len)] = ui.textarea(label=f"关键词#{int(data_len / 5) + 1}", value=textarea_data_change(tmp_config["keywords"]), placeholder='此处输入触发的关键词,多个请以换行分隔').style("width:200px;")
key_mapping_config_var[str(data_len + 1)] = ui.textarea(label=f"礼物#{int(data_len / 5) + 1}", value=textarea_data_change(tmp_config["gift"]), placeholder='此处输入触发的礼物名,多个请以换行分隔').style("width:200px;")
key_mapping_config_var[str(data_len + 2)] = ui.textarea(label=f"按键#{int(data_len / 5) + 1}", value=textarea_data_change(tmp_config["keys"]), placeholder='此处输入你要映射的按键,多个按键请以换行分隔(按键名参考pyautogui规则)').style("width:100px;")
key_mapping_config_var[str(data_len + 3)] = ui.input(label=f"相似度#{int(data_len / 5) + 1}", value=tmp_config["similarity"], placeholder='关键词与用户输入的相似度,默认1即100%').style("width:50px;")
key_mapping_config_var[str(data_len + 4)] = ui.textarea(label=f"文案#{int(data_len / 5) + 1}", value=textarea_data_change(tmp_config["copywriting"]), placeholder='此处输入触发后合成的文案内容,多个请以换行分隔').style("width:300px;")
def key_mapping_del(index):
try:
key_mapping_config_card.remove(int(index) - 1)
# 删除操作
keys_to_delete = [str(5 * (int(index) - 1) + i) for i in range(5)]
for key in keys_to_delete:
if key in key_mapping_config_var:
del key_mapping_config_var[key]
# 重新编号剩余的键
updates = {}
for key in sorted(key_mapping_config_var.keys(), key=int):
new_key = str(int(key) - 5 if int(key) > int(keys_to_delete[-1]) else key)
updates[new_key] = key_mapping_config_var[key]
# 应用更新
key_mapping_config_var.clear()
key_mapping_config_var.update(updates)
except Exception as e:
ui.notify(position="top", type="negative", message=f"错误,索引值配置有误:{e}")
logging.error(traceback.format_exc())
"""
自定义命令
"""
# 自定义命令-增加
def custom_cmd_add():
data_len = len(custom_cmd_config_var)
tmp_config = {
"keywords": [],
"similarity": 1,
"api_url": "",
"api_type": "",
"resp_data_type": "",
"data_analysis": "",
"resp_template": ""
}
with custom_cmd_config_card.style(card_css):
with ui.row():
custom_cmd_config_var[str(data_len)] = ui.textarea(label=f"关键词#{int(data_len / 7) + 1}", value=textarea_data_change(tmp_config["keywords"]), placeholder='此处输入触发的关键词,多个请以换行分隔').style("width:200px;")
custom_cmd_config_var[str(data_len + 1)] = ui.input(label=f"相似度#{int(data_len / 7) + 1}", value=tmp_config["similarity"], placeholder='关键词与用户输入的相似度,默认1即100%').style("width:100px;")
custom_cmd_config_var[str(data_len + 2)] = ui.textarea(label=f"API URL#{int(data_len / 7) + 1}", value=tmp_config["api_url"], placeholder='发送HTTP请求的API链接').style("width:300px;")
custom_cmd_config_var[str(data_len + 3)] = ui.select(label=f"API类型#{int(data_len / 7) + 1}", value=tmp_config["api_type"], options={"GET": "GET"}).style("width:100px;")
custom_cmd_config_var[str(data_len + 4)] = ui.select(label=f"请求返回数据类型#{int(data_len / 7) + 1}", value=tmp_config["resp_data_type"], options={"json": "json", "content": "content"}).style("width:150px;")
custom_cmd_config_var[str(data_len + 5)] = ui.textarea(label=f"数据解析(eval执行)#{int(data_len / 7) + 1}", value=tmp_config["data_analysis"], placeholder='数据解析,请不要随意修改resp变量,会被用于最后返回数据内容的解析').style("width:200px;")
custom_cmd_config_var[str(data_len + 6)] = ui.textarea(label=f"返回内容模板#{int(data_len / 7) + 1}", value=tmp_config["resp_template"], placeholder='请不要随意删除data变量,支持动态变量,最终会合并成完成内容进行音频合成').style("width:300px;")
# 自定义命令-删除
def custom_cmd_del(index):
try:
custom_cmd_config_card.remove(int(index) - 1)
# 删除操作
keys_to_delete = [str(7 * (int(index) - 1) + i) for i in range(7)]
for key in keys_to_delete:
if key in custom_cmd_config_var:
del custom_cmd_config_var[key]
# 重新编号剩余的键
updates = {}
for key in sorted(custom_cmd_config_var.keys(), key=int):
new_key = str(int(key) - 7 if int(key) > int(keys_to_delete[-1]) else key)
updates[new_key] = custom_cmd_config_var[key]
# 应用更新
custom_cmd_config_var.clear()
custom_cmd_config_var.update(updates)
except Exception as e:
ui.notify(position="top", type="negative", message=f"错误,索引值配置有误:{e}")
logging.error(traceback.format_exc())
"""
配置操作
"""
# 配置检查
def check_config():
# 通用配置 页面 配置正确性校验
if select_platform.value == 'bilibili2' and select_bilibili_login_type.value == 'cookie' and input_bilibili_cookie.value == '':
ui.notify(position="top", type="warning", message="请先前往 通用配置-哔哩哔哩,填写B站cookie")
return False
elif select_platform.value == 'bilibili2' and select_bilibili_login_type.value == 'open_live' and \
(input_bilibili_open_live_ACCESS_KEY_ID.value == '' or input_bilibili_open_live_ACCESS_KEY_SECRET.value == '' or \
input_bilibili_open_live_APP_ID.value == '' or input_bilibili_open_live_ROOM_OWNER_AUTH_CODE.value == ''):
ui.notify(position="top", type="warning", message="请先前往 通用配置-哔哩哔哩,填写开放平台配置")
return False
"""
针对配置情况进行提示
"""
# 检测平台配置,进行提示
if select_platform.value == "dy":
ui.notify(position="top", type="warning", message=f"对接抖音平台时,请先开启抖音弹幕监听程序!直播间号不需要填写")
elif select_platform.value == "bilibili":
ui.notify(position="top", type="info", message=f"哔哩哔哩1 监听不是很稳定,推荐使用 哔哩哔哩2")
elif select_platform.value == "bilibili2":
if select_bilibili_login_type.value == "不登录":
ui.notify(position="top", type="warning", message=f"哔哩哔哩2 在不登录的情况下,无法获取用户完整的用户名")
return True
# 保存配置
def save_config():
global config, config_path
# 配置检查
if not check_config():
return
try:
with open(config_path, 'r', encoding="utf-8") as config_file:
config_data = json.load(config_file)
except Exception as e:
logging.error(f"无法读取配置文件!\n{e}")
ui.notify(position="top", type="negative", message=f"无法读取配置文件!{e}")
return False
def common_textarea_handle(content):
"""通用的textEdit 多行文本内容处理
Args:
content (str): 原始多行文本内容
Returns:
_type_: 处理好的多行文本内容
"""
# 通用多行分隔符
separators = [" ", "\n"]
ret = [token.strip() for separator in separators for part in content.split(separator) if (token := part.strip())]
if 0 != len(ret):
ret = ret[1:]
return ret
try:
"""
通用配置
"""
if True:
config_data["platform"] = select_platform.value
config_data["room_display_id"] = input_room_display_id.value
config_data["chat_type"] = select_chat_type.value
config_data["visual_body"] = select_visual_body.value
config_data["need_lang"] = select_need_lang.value
config_data["before_prompt"] = input_before_prompt.value
config_data["after_prompt"] = input_after_prompt.value
config_data["comment_template"]["enable"] = switch_comment_template_enable.value
config_data["comment_template"]["copywriting"] = input_comment_template_copywriting.value
config_data["audio_synthesis_type"] = select_audio_synthesis_type.value
# 哔哩哔哩
config_data["bilibili"]["login_type"] = select_bilibili_login_type.value
config_data["bilibili"]["cookie"] = input_bilibili_cookie.value
config_data["bilibili"]["ac_time_value"] = input_bilibili_ac_time_value.value
config_data["bilibili"]["username"] = input_bilibili_username.value
config_data["bilibili"]["password"] = input_bilibili_password.value
config_data["bilibili"]["open_live"]["ACCESS_KEY_ID"] = input_bilibili_open_live_ACCESS_KEY_ID.value
config_data["bilibili"]["open_live"]["ACCESS_KEY_SECRET"] = input_bilibili_open_live_ACCESS_KEY_SECRET.value
config_data["bilibili"]["open_live"]["APP_ID"] = int(input_bilibili_open_live_APP_ID.value)
config_data["bilibili"]["open_live"]["ROOM_OWNER_AUTH_CODE"] = input_bilibili_open_live_ROOM_OWNER_AUTH_CODE.value
# twitch
config_data["twitch"]["token"] = input_twitch_token.value
config_data["twitch"]["user"] = input_twitch_user.value
config_data["twitch"]["proxy_server"] = input_twitch_proxy_server.value
config_data["twitch"]["proxy_port"] = input_twitch_proxy_port.value
# 音频播放
if config.get("webui", "show_card", "common_config", "play_audio"):
config_data["play_audio"]["enable"] = switch_play_audio_enable.value
config_data["play_audio"]["text_split_enable"] = switch_play_audio_text_split_enable.value
config_data["play_audio"]["normal_interval"] = round(float(input_play_audio_normal_interval.value), 2)
config_data["play_audio"]["out_path"] = input_play_audio_out_path.value
config_data["play_audio"]["player"] = select_play_audio_player.value
# audio_player
config_data["audio_player"]["api_ip_port"] = input_audio_player_api_ip_port.value
# 念弹幕
if config.get("webui", "show_card", "common_config", "read_comment"):
config_data["read_comment"]["enable"] = switch_read_comment_enable.value
config_data["read_comment"]["read_username_enable"] = switch_read_comment_read_username_enable.value
config_data["read_comment"]["username_max_len"] = int(input_read_comment_username_max_len.value)
config_data["read_comment"]["voice_change"] = switch_read_comment_voice_change.value
config_data["read_comment"]["read_username_copywriting"] = common_textarea_handle(textarea_read_comment_read_username_copywriting.value)
# 回复时念用户名
if config.get("webui", "show_card", "common_config", "read_username"):
config_data["read_username"]["enable"] = switch_read_username_enable.value
config_data["read_username"]["username_max_len"] = int(input_read_username_username_max_len.value)
config_data["read_username"]["voice_change"] = switch_read_username_voice_change.value
config_data["read_username"]["reply_before"] = common_textarea_handle(textarea_read_username_reply_before.value)
config_data["read_username"]["reply_after"] = common_textarea_handle(textarea_read_username_reply_after.value)
# 日志
if config.get("webui", "show_card", "common_config", "log"):
config_data["comment_log_type"] = select_comment_log_type.value
config_data["captions"]["enable"] = switch_captions_enable.value
config_data["captions"]["file_path"] = input_captions_file_path.value
config_data["captions"]["raw_file_path"] = input_captions_raw_file_path.value
# 本地问答
if config.get("webui", "show_card", "common_config", "local_qa"):
config_data["local_qa"]["text"]["enable"] = switch_local_qa_text_enable.value
local_qa_text_type = select_local_qa_text_type.value
if local_qa_text_type == "自定义json":
config_data["local_qa"]["text"]["type"] = "json"
elif local_qa_text_type == "一问一答":
config_data["local_qa"]["text"]["type"] = "text"
config_data["local_qa"]["text"]["file_path"] = input_local_qa_text_file_path.value
config_data["local_qa"]["text"]["similarity"] = round(float(input_local_qa_text_similarity.value), 2)
config_data["local_qa"]["text"]["username_max_len"] = int(input_local_qa_text_username_max_len.value)
config_data["local_qa"]["audio"]["enable"] = switch_local_qa_audio_enable.value
config_data["local_qa"]["audio"]["file_path"] = input_local_qa_audio_file_path.value
config_data["local_qa"]["audio"]["similarity"] = round(float(input_local_qa_audio_similarity.value), 2)
# 过滤
if config.get("webui", "show_card", "common_config", "filter"):
config_data["filter"]["before_must_str"] = common_textarea_handle(textarea_filter_before_must_str.value)