You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ai-meetings/README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -491,7 +491,7 @@ Now let's add a new service to the recently created backend OCI Speech API to re
491
491
492
492
- In the file picker create an event. On this event, you will manage the file upload to the object storage.
493
493
494
-
```json
494
+
```js
495
495
define([
496
496
'vb/action/actionChain',
497
497
'vb/action/actions',
@@ -582,7 +582,7 @@ Now let's add a new service to the recently created backend OCI Speech API to re
582
582
- Drop an input text to capture the meeting name and a button to create the meeting. So, you can associate a string variable to the input text (example meetingName). We will create the meeting metadata on the business object
583
583
- Associate an ojAction event to the button (it's the action chain):
584
584
585
-
```
585
+
```js
586
586
define([
587
587
'vb/action/actionChain',
588
588
'vb/action/actions',
@@ -673,7 +673,7 @@ Now let's add a new service to the recently created backend OCI Speech API to re
673
673
* Now we will create another Action chain to create the transcription job using the Speech service. We will provide information as the compartment, bucket, object and we will update the Transcription table with the relevant information.
674
674
675
675
676
-
```
676
+
```js
677
677
define([
678
678
'vb/action/actionChain',
679
679
'vb/action/actions',
@@ -769,7 +769,7 @@ Now let's add a new service to the recently created backend OCI Speech API to re
769
769
770
770
- Create an Action event asociated to the button to refresh the page
771
771
772
-
```
772
+
```js
773
773
define([
774
774
'vb/action/actionChain',
775
775
'vb/action/actions',
@@ -802,7 +802,7 @@ Now let's add a new service to the recently created backend OCI Speech API to re
802
802

803
803
804
804
805
-
```
805
+
```js
806
806
define([
807
807
'vb/action/actionChain',
808
808
'vb/action/actions',
@@ -1045,7 +1045,7 @@ Now let's add a new service to the recently created backend OCI Speech API to re
1045
1045
1046
1046
- Action chain for sentiment detection
1047
1047
1048
-
```
1048
+
```js
1049
1049
define([
1050
1050
'vb/action/actionChain',
1051
1051
'vb/action/actions',
@@ -1193,7 +1193,7 @@ Now let's add a new service to the recently created backend OCI Speech API to re
1193
1193
1194
1194
- Action chain forsummarization. We will do chunking too.
1195
1195
1196
-
```
1196
+
```js
1197
1197
define([
1198
1198
'vb/action/actionChain',
1199
1199
'vb/action/actions',
@@ -1342,7 +1342,7 @@ Now let's add a new service to the recently created backend OCI Speech API to re
0 commit comments