import { eliceContents } from'src/constants';eliceContents.ai.chat.prompt('초등학생이 쉽게 풀 수 있는 문제를 만들겠습니다...', { systemInstruction:'...' })// { session: '550e8400-e29b-41d4-a716-446655440000', contentResponse: '초등학생이 쉽게 풀 수 있는 문제를 만들겠습니다...' }
import { eliceContents } from'src/constants';conststartNewChat= () => {eliceContents.ai.chat.reset();eliceContents.ai.chat.prompt('초등학생이 쉽게 풀 수 있는 문제를 만들겠습니다...', { systemInstruction:'...' });}
import { eliceContents } from'src/constants';eliceContents.subscribe((event) => {switch(event.type) {case'load': console.log(eliceContents.ai.chat.chatMessages); // [{ role: 'system', content: '초등학생이 쉽게 풀 수 있는 문제를 만들겠습니다...', ts: 1634025600000 }, ...]
break;case'comment': console.log(eliceContents.ai.chat.chatMessages); // [{ role: 'system', content: '초등학생이 쉽게 풀 수 있는 문제를 만들겠습니다...', ts: 1634025600000 }, ...]
break;case'clear':console.log(eliceContents.ai.chat.chatMessages); // []break;case'reset':console.log(eliceContents.ai.chat.chatMessages); // []break; }});