assess_admissions_fit
학생의 시험 점수(SAT/ACT)와 목표 대학 목록을 받아, College Scorecard 실데이터 기반으로 학교별 REACH/MATCH/SAFETY 적합도를 분류합니다. 합격 확률 예측이 아닌 밴드 분류이며, 근거(점수 밴드·합격률)를 함께 반환합니다.
Parameters3
| sat | number | optional | SAT 총점 |
| act | number | optional | ACT 총점 |
| target_universities | array | required | 목표 대학 이름 목록 (영문/한글/약칭 허용, 예: MIT, Harvard) |
Raw schema
{
"type": "object",
"properties": {
"sat": {
"description": "SAT 총점",
"type": "number",
"minimum": 400,
"maximum": 1600
},
"act": {
"description": "ACT 총점",
"type": "number",
"minimum": 1,
"maximum": 36
},
"target_universities": {
"minItems": 1,
"maxItems": 10,
"type": "array",
"items": {
"type": "string"
},
"description": "목표 대학 이름 목록 (영문/한글/약칭 허용, 예: MIT, Harvard)"
}
},
"required": [
"target_universities"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}