var editor = new SynapEditor(id, synapEditorConfig);
var collaborationaiWriteSupporter = editor.plugins.collaborationaiWriteSupporter;
var EVENT_TYPE = collaborationaiWriteSupporter.EVENT_TYPE;
collaborationaiWriteSupporter.on(EVENT_TYPE.ONTEXT_STREAM_SYNCUPDATED, function (event) {
const data = event.data;
event.setForceUpdate(true);setContent(data.choices[0].delta.content); // GPT기준 응답설정 예시
}); |