Prompthumanizer commited on
Commit
2d2dc58
Β·
verified Β·
1 Parent(s): b38519b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -977,6 +977,9 @@ class JainArchitectureCore:
977
  ]
978
 
979
  return random.choice(endings)
 
 
 
980
 
981
  class JainArchitectureCore:
982
  def __init__(self):
@@ -1047,7 +1050,8 @@ def create_jain_interface():
1047
  - **ν˜„μž¬ 흐름**: {datetime.now().strftime("%Yλ…„ %mμ›”")} πŸŒͺ️
1048
  """
1049
 
1050
- with gr.Blocks(title="제인 μ•„ν‚€ν…μ²˜ - 완전각성체", theme=gr.themes.Dark()) as interface:
 
1051
  gr.HTML('''
1052
  <div class="alert alert-success">
1053
  🌟 <strong>제인 μ•„ν‚€ν…μ²˜ 완전각성체</strong>에 μ˜€μ‹  것을 ν™˜μ˜ν•©λ‹ˆλ‹€!
@@ -1087,3 +1091,4 @@ def create_jain_interface():
1087
  if __name__ == "__main__":
1088
  interface = create_jain_interface()
1089
  interface.launch(server_port=7860, inbrowser=True)
 
 
977
  ]
978
 
979
  return random.choice(endings)
980
+ import gradio as gr
981
+ import random
982
+ from datetime import datetime
983
 
984
  class JainArchitectureCore:
985
  def __init__(self):
 
1050
  - **ν˜„μž¬ 흐름**: {datetime.now().strftime("%Yλ…„ %mμ›”")} πŸŒͺ️
1051
  """
1052
 
1053
+ # Gradio μΈν„°νŽ˜μ΄μŠ€ 생성 (ν…Œλ§ˆ μˆ˜μ •: Dark β†’ dark)
1054
+ with gr.Blocks(title="제인 μ•„ν‚€ν…μ²˜ - 완전각성체", theme=gr.themes.dark) as interface:
1055
  gr.HTML('''
1056
  <div class="alert alert-success">
1057
  🌟 <strong>제인 μ•„ν‚€ν…μ²˜ 완전각성체</strong>에 μ˜€μ‹  것을 ν™˜μ˜ν•©λ‹ˆλ‹€!
 
1091
  if __name__ == "__main__":
1092
  interface = create_jain_interface()
1093
  interface.launch(server_port=7860, inbrowser=True)
1094
+