File tree Expand file tree Collapse file tree
DataGrid/AIColumns/jQuery
HtmlEditor/AITextEditing/jQuery
TreeList/AIColumns/jQuery
packages/devextreme/build/bundle-templates Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ $(() => {
4646 } ) ;
4747 }
4848
49- const aiIntegration = new DevExpress . aiIntegration ( {
49+ const aiIntegration = new DevExpress . aiIntegration . AIIntegration ( {
5050 sendRequest ( { prompt } ) {
5151 const isValidRequest = JSON . stringify ( prompt . user ) . length < 5000 ;
5252 if ( ! isValidRequest ) {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ $(() => {
2121 return result ;
2222 }
2323
24- const aiIntegration = new DevExpress . aiIntegration ( {
24+ const aiIntegration = new DevExpress . aiIntegration . AIIntegration ( {
2525 sendRequest ( { prompt } ) {
2626 const controller = new AbortController ( ) ;
2727 const signal = controller . signal ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ $(() => {
2121 return result ;
2222 }
2323
24- const aiIntegration = new DevExpress . aiIntegration ( {
24+ const aiIntegration = new DevExpress . aiIntegration . AIIntegration ( {
2525 sendRequest ( { prompt } ) {
2626 const controller = new AbortController ( ) ;
2727 const signal = controller . signal ;
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ $(() => {
4646 } ) ;
4747 }
4848
49- const aiIntegration = new DevExpress . aiIntegration ( {
49+ const aiIntegration = new DevExpress . aiIntegration . AIIntegration ( {
5050 sendRequest ( { prompt } ) {
5151 const isValidRequest = JSON . stringify ( prompt . user ) . length < 5000 ;
5252 if ( ! isValidRequest ) {
Original file line number Diff line number Diff line change 22/* eslint-disable import/no-commonjs */
33import { AIIntegration } from '../common/ai-integration' ;
44
5- module . exports = DevExpress . aiIntegration = AIIntegration ;
5+ DevExpress . aiIntegration = { } ;
6+ module . exports = DevExpress . aiIntegration . AIIntegration = AIIntegration ;
You can’t perform that action at this time.
0 commit comments