openfree commited on
Commit
00f69ff
·
verified ·
1 Parent(s): 5202085

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -1281,16 +1281,20 @@ with gr.Blocks(css="app.css", theme=theme) as demo: # Use css parameter directly
1281
  historyBtn = antd.Button("📜 히스토리", type="default", icon="<i class='fas fa-history'></i>")
1282
  template_btn = antd.Button("🎮 템플릿", type="default", icon="<i class='fas fa-gamepad'></i>")
1283
 
1284
- # Input Textarea
 
 
1285
  input_text = antd.InputTextarea(
1286
  size="large",
1287
  allow_clear=True,
1288
  placeholder="예: 벽돌깨기 게임 만들어줘 (간단하게)", # Shorter placeholder
1289
- rows=6, # Adjust rows for desired initial height
1290
  max_length=2000, # Sensible max length for input
1291
  show_count=True, # Show character count
1292
  elem_classes="main-input-textarea"
1293
  )
 
 
1294
  gr.HTML('<div class="help-text">💡 원하는 게임을 설명하거나 템플릿을 사용하세요. 간결할수록 좋습니다!</div>')
1295
 
1296
  # Action Buttons (Send, Boost, Execute, Deploy, Clear)
 
1281
  historyBtn = antd.Button("📜 히스토리", type="default", icon="<i class='fas fa-history'></i>")
1282
  template_btn = antd.Button("🎮 템플릿", type="default", icon="<i class='fas fa-gamepad'></i>")
1283
 
1284
+
1285
+
1286
+
1287
  input_text = antd.InputTextarea(
1288
  size="large",
1289
  allow_clear=True,
1290
  placeholder="예: 벽돌깨기 게임 만들어줘 (간단하게)", # Shorter placeholder
1291
+ # rows=6, # 제거
1292
  max_length=2000, # Sensible max length for input
1293
  show_count=True, # Show character count
1294
  elem_classes="main-input-textarea"
1295
  )
1296
+ # Input Textarea
1297
+
1298
  gr.HTML('<div class="help-text">💡 원하는 게임을 설명하거나 템플릿을 사용하세요. 간결할수록 좋습니다!</div>')
1299
 
1300
  # Action Buttons (Send, Boost, Execute, Deploy, Clear)