Skip to content

Commit c05718f

Browse files
committed
various
1 parent c8b10d3 commit c05718f

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

interactive-ai-holograms/react-client/react-client/src/App.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,11 +264,13 @@ function App() {
264264
<h5>Click 'Start session' and ask DeeBee/DB a question. </h5>
265265
<br />
266266
<h5>Examples...</h5>
267-
What is the latest minor version release for Oracle Database
267+
'What is the latest version of the Oracle Database?'
268268
<br />
269-
'Hey DeeBee, Whats is the best video game' - will query LLM directly
269+
'What is the latest version of the Oracle Database? Use Rag.'
270270
<br />
271-
'Hey DeeBee, Whats is the best video game. Use Database' - will use NL2SQL and Vector/RAG search on private database/data
271+
'Whats is the best video game?'
272+
<br />
273+
'Whats is the best video game. Use Database'
272274
<br />
273275
'What is Oracle for Startups? Use Database'
274276
<br />

interactive-ai-holograms/react-client/react-client/src/App.tsx0

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -264,21 +264,22 @@ function App() {
264264
<h5>Click 'Start session' and ask DeeBee/DB a question. </h5>
265265
<br />
266266
<h5>Examples...</h5>
267-
What is the latest minor version release for Oracle Database
267+
'What is the latest version of the Oracle Database?'
268268
<br />
269-
'Hey DeeBee, Whats is the best video game' - will query LLM directly
269+
'What is the latest version of the Oracle Database? Use Rag.'
270270
<br />
271-
'Hey DeeBee, Whats is the best video game. Use Database' - will use NL2SQL and Vector/RAG search on private database/data
271+
'Whats is the best video game?'
272+
<br />
273+
'Whats is the best video game. Use Database'
272274
<br />
273275
'What is Oracle for Startups? Use Database'
274276
<br />
275277
<span>
276278
<button onClick={() => (buttonState ? stopSession() : startSession())}>
277279
{buttonState ? "Stop Session and Submit Question" : "Start session and Ask Question"}
278280
</button>
279-
<br />
281+
280282
{/* <button onClick={requestFinalResult}>Request Final Result</button> */}
281-
<button onClick={mirrorMe}>Switch To "Mirror Me"</button>
282283
<button
283284
onClick={() => {
284285
buttonState && stopSession();
@@ -287,13 +288,14 @@ function App() {
287288
>
288289
Clear screen
289290
</button>
290-
<input
291+
<br /><input
291292
type="text"
292293
value={textFieldValue}
293294
onChange={(e) => setTextFieldValue(e.target.value)}
294295
placeholder="Enter your question"
295296
/>
296297
<button onClick={() => handleCallSelectAI(textFieldValue)}>Call Select AI</button>
298+
<br /><button onClick={mirrorMe}>Switch To "Mirror Me"</button>
297299
</span>
298300

299301
</div>

0 commit comments

Comments
 (0)