|
import gradio as gr |
|
|
|
def calculate_mbti(*answers): |
|
|
|
scores = {"E": 0, "I": 0, "S": 0, "N": 0, "T": 0, "F": 0, "J": 0, "P": 0} |
|
|
|
for answer in answers: |
|
if answer in scores: |
|
scores[answer] += 1 |
|
|
|
|
|
mbti_type = "" |
|
for dimension in ["EI", "SN", "TF", "JP"]: |
|
if scores[dimension[0]] >= scores[dimension[1]]: |
|
mbti_type += dimension[0] |
|
else: |
|
mbti_type += dimension[1] |
|
|
|
|
|
interpretations = { |
|
"ISTJ": "μ€μ©μ μ΄κ³ μ μ€ν¨", |
|
"ISFJ": "μΈμ¬νκ³ λ°λ»ν¨", |
|
"INFJ": "μ§κ΄μ μ΄κ³ μ¬μΈν¨", |
|
"INTJ": "μ λ΅μ μ΄κ³ λ
μ°½μ μ", |
|
|
|
} |
|
|
|
|
|
return f"λΉμ μ MBTI μ νμ {mbti_type}μ
λλ€. {interpretations.get(mbti_type, 'ν΄μ μ€λΉμ€')}." |
|
|
|
|
|
questions = [ |
|
gr.Radio(["E", "I"], label="1. μλ‘μ΄ μ¬λλ€μ λ§λ λ κΈ°λΆμ΄ μ΄λ μ κ°μ?"), |
|
gr.Radio(["S", "N"], label="2. λ¬Έμ λ₯Ό ν΄κ²°ν λ μ§κ΄μ λ λ°λ₯΄μλμ, μλλ©΄ ꡬ체μ μΈ μ¬μ€μ λ μ€μνμλμ?"), |
|
gr.Radio(["T", "F"], label="3. κ²°μ μ λ΄λ¦΄ λ λ
Όλ¦¬μ μ΄μ±μ λ μ€μνμλμ, μλλ©΄ μ¬λλ€μ κ°μ κ³Ό κ°μΉλ₯Ό λ μ€μνμλμ?"), |
|
gr.Radio(["J", "P"], label="4. κ³νμ μΈμ°κ³ κ·Έ κ³νμ λ°λΌ μΌνλ κ²μ μ νΈνμλμ, μλλ©΄ μ μ°νκ³ μ¦ν₯μ μΈ κ²μ μ νΈνμλμ?"), |
|
|
|
] |
|
|
|
|
|
iface = gr.Interface(fn=calculate_mbti, inputs=questions, outputs="text", title="MBTI μ§λ¨ ν
μ€νΈ") |
|
iface.launch() |