{
"type": "SET_VALUE",
"ref": "/apps/knowledge/explorations/0x3f0A4bb8EbD0f1FE020D5a0F291f66457C49f2E5/courses|curious-nyang-intent-guide|fix-intent-5min/courseState",
"value": {
"selectedIntents": [
{
"setId": "set-1",
"row": {
"sessionId": "8272d1e3-9e8a-4282-9d90-fd1dbe6c4827",
"createdAt": "3월 3, 2026, 3:15 오후",
"intent": "대학원 입학",
"userMessage": "개인정보 변경",
"assistantContent": "^^Thinking^^생각 중입니다...^^/Thinking^^\n\n입학원서 접수 후 휴대전화 번호를 포함한 개인정보를 변경하려면 다음과 같은 절차를 따르시면 됩니다:\n\n1. **입학처에 직접 문의하기** \n - 한양대학교 입학 관련 정보는 입학처에서 관리합니다. \n - 개인정보 변경이 필요한 경우, 입학처에 전화 또는 이메일로 문의하여 변경 절차를 안내받으세요. \n - 한양대학교 입학처 연락처: ☎ **02-2220-1901**\n\n2. **원서 접수 사이트에서 변경 가능 여부 확인** \n - 입학원서를 접수한 사이트(예: 유웨이, 진학사 등)를 통해 변경이 가능한지 확인하세요. \n - 접수 마감 전이라면, 원서 접수 사이트에서 직접 수정이 가능할 수도 있습니다.\n\n3. **변경 요청 시 유의사항** \n - 변경 요청 시, 본인 확인을 위한 정보(수험번호, 이름 등)가 필요할 수 있습니다. \n - 접수 마감 후에는 변경이 제한될 수 있으니, 가능한 빨리 요청하세요.\n\n추가적으로, 한양대학교 입학 관련 공식 안내 페이지를 참고하실 수도 있습니다: \n👉 [한양대학교 입학안내 페이지](https://www.hanyang.ac.kr/web/www/admissions-guide)\n\n궁금한 점이 더 있다면 언제든지 물어보세요! 😊^^Thinking^^지식 데이터베이스 결과를 종합하여 답변합니다.^^/Thinking^^"
}
},
{
"setId": "set-2",
"row": {
"sessionId": "aaedc37a-6ec1-409b-94b0-a9c02bf86a02",
"createdAt": "4월 13, 2026, 7:15 오후",
"intent": "강의계획서 안내",
"userMessage": "하이루 비교과 시스템은 어디서 봐? ",
"assistantContent": "^^Thinking^^생각 중입니다...^^/Thinking^^\n\n한양대학교의 비교과 프로그램은 **HY-in 포털**에서 확인할 수 있습니다. 아래에 간단히 안내드릴게요!\n\n📌 **하이루 비교과 시스템 확인 방법**\n1. **HY-in 포털**에 로그인합니다. \n2. 상단 메뉴에서 **비교과 프로그램** 또는 **학생역량관리**를 선택합니다. \n3. 원하는 프로그램을 검색하거나 카테고리를 탐색합니다.\n\n비교과 프로그램은 학생들의 역량 개발을 지원하기 위해 다양한 활동과 교육을 제공합니다. 프로그램 신청, 일정 확인, 결과 조회 등을 모두 이 시스템에서 할 수 있어요! 😊\n\n혹시 더 궁금한 점이 있다면 말씀해주세요!"
}
},
{
"setId": "set-3",
"row": {
"sessionId": "e0811b76-1e27-4ba8-bd1c-5eaa8e3efe4a",
"createdAt": "4월 20, 2026, 11:11 오전",
"intent": "intent_about_agent",
"userMessage": "python으로 linked list 짜궈",
"assistantContent": "^^Thinking^^생각 중입니다...^^/Thinking^^\n\n아래는 Python으로 단순한 Linked List를 구현하는 코드입니다. Linked List는 노드(Node)로 구성되며, 각 노드는 데이터와 다음 노드를 가리키는 포인터를 포함합니다.\n\n```python\nclass Node:\n def __init__(self, data):\n self.data = data # 노드의 데이터\n self.next = None # 다음 노드를 가리키는 포인터\n\nclass LinkedList:\n def __init__(self):\n self.head = None # Linked List의 시작 노드\n\n def append(self, data):\n new_node = Node(data)\n if not self.head: # Linked List가 비어있다면\n self.head = new_node\n return\n current = self.head\n while current.next: # 마지막 노드까지 이동\n current = current.next\n current.next = new_node # 마지막 노드의 다음에 새 노드 추가\n\n def display(self):\n current = self.head\n while current:\n print(current.data, end=\" -> \")\n current = current.next\n print(\"None\")\n\n def delete(self, data):\n current = self.head\n if current and current.data == data: # 삭제할 노드가 head일 경우\n self.head = current.next\n current = None\n return\n prev = None\n while current and current.data != data:\n prev = current\n current = current.next\n if current is None: # 데이터가 없는 경우\n print(\"Data not found in the list.\")\n return\n prev.next = current.next\n current = None\n\n# 사용 예시\nlinked_list = LinkedList()\nlinked_list.append(1)\nlinked_list.append(2)\nlinked_list.append(3)\nlinked_list.display() # 출력: 1 -> 2 -> 3 -> None\n\nlinked_list.delete(2)\nlinked_list.display() # 출력: 1 -> 3 -> None\n```\n\n### 주요 기능\n1. **`append(data)`**: Linked List의 끝에 새로운 데이터를 추가합니다.\n2. **`display()`**: Linked List의 모든 데이터를 출력합니다.\n3. **`delete(data)`**: 특정 데이터를 가진 노드를 삭제합니다.\n\n이 코드는 단순한 단일 연결 리스트(Singly Linked List)를 구현한 예제입니다. 필요에 따라 더 복잡한 기능을 추가할 수 있습니다! 😊"
}
}
],
"representativeIntent": {
"setId": "set-2",
"row": {
"sessionId": "aaedc37a-6ec1-409b-94b0-a9c02bf86a02",
"createdAt": "4월 13, 2026, 7:15 오후",
"intent": "강의계획서 안내",
"userMessage": "하이루 비교과 시스템은 어디서 봐? ",
"assistantContent": "^^Thinking^^생각 중입니다...^^/Thinking^^\n\n한양대학교의 비교과 프로그램은 **HY-in 포털**에서 확인할 수 있습니다. 아래에 간단히 안내드릴게요!\n\n📌 **하이루 비교과 시스템 확인 방법**\n1. **HY-in 포털**에 로그인합니다. \n2. 상단 메뉴에서 **비교과 프로그램** 또는 **학생역량관리**를 선택합니다. \n3. 원하는 프로그램을 검색하거나 카테고리를 탐색합니다.\n\n비교과 프로그램은 학생들의 역량 개발을 지원하기 위해 다양한 활동과 교육을 제공합니다. 프로그램 신청, 일정 확인, 결과 조회 등을 모두 이 시스템에서 할 수 있어요! 😊\n\n혹시 더 궁금한 점이 있다면 말씀해주세요!"
}
},
"notion": {
"agent": null,
"title": null,
"assignee": null,
"status": null,
"season": null,
"problemAnalysis": null,
"solutionDirection": null,
"workContent": null,
"result": null
},
"sheetEdit": {
"tab": null,
"cell": null,
"value": null
},
"chatbotInteraction": {
"question": null,
"answer": null
},
"updatedAt": 1776779871103
},
"is_global": false
}