Skip to content

Commit 240792c

Browse files
committed
init
1 parent 2624c8c commit 240792c

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

src/main/resources/static/ObjectDetectionGenAIAndSentimentAnalysis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h5>&nbsp; &nbsp; Uses Oracle Vision AI, Oracle Language AI, and Open AI Chat</h
3131
Select an image file to create story from...
3232
<input type="file" name="file" accept="image/*">
3333
<br>
34-
<br> Some additional options...
34+
<br><b>Options...</b>
3535
<br><input type="radio" name="genopts" value="an adventure" checked >an adventure
3636
<br><input type="radio" name="genopts" value="romantic">romantic
3737
<br><input type="radio" name="genopts" value="a dystopia">a dystopia

src/main/resources/static/SpeechTranscriptionAndImageGeneration.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h5>&nbsp; &nbsp; Uses Oracle Speech AI Transcription and Image Generation </h5>
3636
<input type="file" name="file" accept="image/*">
3737
<br><br>
3838
<!-- <input type="submit" value="Click here and record (up to 10 seconds of audio) describing next scene.">-->
39-
<br><br> Additional options...
39+
<br><br> <b>Options...</b>
4040
<br><input type="radio" name="genopts" value=", using only one line" checked >using only one line
4141
<br><input type="radio" name="genopts" value=", photo taken on a Pentax k1000">photo taken on a Pentax k1000
4242
<br><input type="radio" name="genopts" value=", pixel art">pixel art

src/main/resources/static/TextDetectionAndSummarization.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ <h5>Uses Oracle Vision AI Document/Text Detection and Oracle Gen AI Services</h5
3535
<br>(You can download and use the sample image found <a href="images/bloodsugarreport.jpeg">here</a>)
3636
<br>
3737
<br>
38-
<br> Options...
39-
<br>
38+
<br> <b>Options...</b>
4039
<br><input type="radio" name="opts" value="inline" checked >Process image inline (do not store image or results)
4140
<br>(makes calls to Vision AI and Gen AI directly from this application)
4241
<br>

src/main/resources/static/TextSearch.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,44 +36,44 @@ <h5>Uses Oracle Text Indexing Searches (and in 23c DBMS_SEARCH multi-table searc
3636
<br>
3737

3838
<input type="radio" name="opts" value="contains" checked >CONTAINS operator
39-
<br><input type="text" name="textsearchfield" value="select * from user_data
39+
<br><input type="text" name="textsearchfield" value="select * from aispeech_results_json
4040
where contains ( jsondata, 'john' ) > 0"/>
4141
<br>
4242
<br>
4343

4444
<input type="radio" name="opts" value="mixedqueries">Mixed Queries
45-
<br><input type="text" name="textsearchfield" value="select * from user_data
45+
<br><input type="text" name="textsearchfield" value="select * from aispeech_results_json
4646
where amount < 100
4747
and contains ( jsondata, 'smith' ) > 0"/>
4848
<br>
4949
<br>
5050

5151
<input type="radio" name="opts" value="orsearch">OR search
52-
<br><input type="text" name="textsearchfield" value="select * from user_data
52+
<br><input type="text" name="textsearchfield" value="select * from aispeech_results_json
5353
where contains ( jsondata, 'john OR johnny' ) > 0"/>
5454
<br>
5555
<br>
5656

5757
<input type="radio" name="opts" value="wildcards">Wildcards (% matches any string of characters, and an underscore _ character matches any single character)
58-
<br><input type="text" name="textsearchfield" value="select * from user_data
58+
<br><input type="text" name="textsearchfield" value="select * from aispeech_results_json
5959
where contains ( jsondata, 'john%' ) > 0"/>
6060
<br>
6161
<br>
6262

6363
<input type="radio" name="opts" value="phrasesearch">Phrase searches (an AND search similar to OR but implicit)
64-
<br><input type="text" name="textsearchfield" value="select * from user_data
64+
<br><input type="text" name="textsearchfield" value="select * from aispeech_results_json
6565
where contains ( jsondata, 'first order' ) > 0"/>
6666
<br>
6767
<br>
6868

6969
<input type="radio" name="opts" value="fuzzysearch">Fuzzy searches (find not only the original search word, but also all those similar to it)
70-
<br><input type="text" name="textsearchfield" value="select * from user_data
70+
<br><input type="text" name="textsearchfield" value="select * from aispeech_results_json
7171
where contains ( jsondata, 'fuzzy(popins)' ) > 0"/>
7272
<br>
7373
<br>
7474

7575
<input type="radio" name="opts" value="nearsearch">Near searches (words within specified distance of each other)
76-
<br><input type="text" name="textsearchfield" value="select * from user_data
76+
<br><input type="text" name="textsearchfield" value="select * from aispeech_results_json
7777
where contains ( jsondata, 'near((order, smith), 1)' ) > 0"/>
7878
<br>
7979
<br>

0 commit comments

Comments
 (0)