diff --git a/source/entryjs/api/2024-04-24-ml.md b/source/entryjs/api/2024-04-24-ml.md index 38397fba..562e2edc 100644 --- a/source/entryjs/api/2024-04-24-ml.md +++ b/source/entryjs/api/2024-04-24-ml.md @@ -213,6 +213,49 @@ entrylabs/ml은 사용자가 원하는 학습모을 선택하고 학습하는 사용자들이 인공지능 모델을 학습하는 UI를 팝업형태로 생성합니다. entry-tool을 활용한 팝업과 유사합니다. +#### Vanilla JS +```js + + + + + + + EntryJS Base Example + + + + +
+ + + + +``` +#### next.js +[webpack externals](https://webpack.kr/configuration/externals/#externals). 설정을 이용하여 아래와 같이 사용 가능합니다. + +webpack 설정. +```js +config.externals = [ + { + '@entrylabs/tool': 'EntryTool', + '@entrylabs/tool/component': 'EntryTool.Component', + '@entrylabs/ml': 'Entryml', + }, +]; +``` ```js const learningPopup = {};