Page tree

Versions Compared

Key

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

Status
colourYellow
title릴리즈 32.018.0 이상
 
Status
colourYellow
title릴리즈 23.180.0 이상
 

생성형 이미지 AI DALL-E를 연동해 자동으로 이미지를 생성하여 콘텐츠 생성을 지원합니다.

...

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
//...
'editor.quickInsert': [
	// AI 이미지 요청하기 버튼
    'openImageAI',
    // ...
],
// ...


config 설정

...

설정

...

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
// URL과 API Key를 설정하는 경우
'aiWriteSupporter.config': {
	image: {
		url: 'https://api.openai.com/v1/images/generations',
		apiKey: 'sk-abc123...456xyz', // 브라우저에 노출되므로 안전하지 않음
		//...
	}
}

// URL만 설정하는 경우
'aiWriteSupporter.config': {
	image: {
		url: '/request',
		//...
	}
}

...