CoolFace
Modelpublic

VIDraft/JGOS-31B-VID

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes9downloads
Model Card

JGOS-31B-AX

JGOS-31B-Citizen 기반 K-AI 최적화 버전.

  • —Thinking 기본 활성화 (<think> prefill)
  • —K-AI 평가 최적화 (CLIcK / KMMLU / MuSR / Com2)
  • —temperature=0.0 강제, min_tokens=8192

Usage

python
messages = [
    {"role": "user", "content": "질문"},
    {"role": "assistant", "content": "<think>\n"}
]
response = client.chat.completions.create(
    model="JGOS-31B-AX",
    messages=messages,
    max_tokens=8192,
    temperature=0.0,
    extra_body={
        "continue_final_message": True,
        "add_generation_prompt": False
    }
)