소스 검색

Rename a file

oobabooga 2 년 전
부모
커밋
05ee323ce5
2개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 0
      css/html_cai_style.css
  2. 1 1
      modules/html_generator.py

+ 0 - 0
css/html_chat_style.css → css/html_cai_style.css


+ 1 - 1
modules/html_generator.py

@@ -101,7 +101,7 @@ def load_html_image(paths):
     return ''
 
 def generate_chat_html(history, name1, name2, character):
-    with open(Path(__file__).resolve().parent / '../css/html_chat_style.css', 'r') as f:
+    with open(Path(__file__).resolve().parent / '../css/html_cai_style.css', 'r') as f:
         css = f.read()
         
     output = f'<style>{css}</style><div class="chat" id="chat">'