Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
// URL과 API Key를 설정하는 경우
'aiWriteSupporter.config': {
        ai: 'hcx',
        tokenUrl: 'https://api.hyperclova.ai/v1/tokens', //토큰 발급 요청 API URL
        url: 'https://api.hyperclova.ai/v1/chat-completions/HCX-001',
        clientID: '2029ae...97b72',
        clientSecret: '8gsetc...0bges3' // 브라우저에 노출되므로 안전하지 않음
}
 
// URL만 설정하는 경우
'aiWriteSupporter.config': {
        ai: 'hcx',
        url: '/request',
}

...