kimrang commited on
Commit
e0ab6b5
·
verified ·
1 Parent(s): aea47d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -581,6 +581,12 @@ with gr.Blocks(title="한남대학교 Q&A") as interface:
581
 
582
  submit_btn = gr.Button("답변 받기", variant="primary", size="lg")
583
 
 
 
 
 
 
 
584
  with gr.Column(scale=2):
585
  output = gr.Textbox(
586
  label="💬 답변",
 
581
 
582
  submit_btn = gr.Button("답변 받기", variant="primary", size="lg")
583
 
584
+ model_choice = gr.Radio(
585
+ choices=["llama3-70b-8192", "llama3-8b-8192"],
586
+ label="🤖 AI 모델 선택",
587
+ value="llama3-70b-8192"
588
+ )
589
+
590
  with gr.Column(scale=2):
591
  output = gr.Textbox(
592
  label="💬 답변",