File tree Expand file tree Collapse file tree 2 files changed +13
-9
lines changed
interactive-ai-holograms/react-client/react-client/src Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -264,11 +264,13 @@ function App() {
264
264
< h5 > Click 'Start session' and ask DeeBee/DB a question. </ h5 >
265
265
< br />
266
266
< h5 > Examples...</ h5 >
267
- What is the latest minor version release for Oracle Database
267
+ ' What is the latest version of the Oracle Database?'
268
268
< 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.'
270
270
< 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'
272
274
< br />
273
275
'What is Oracle for Startups? Use Database'
274
276
< br />
Original file line number Diff line number Diff line change @@ -264,21 +264,22 @@ function App() {
264
264
<h5>Click 'Start session' and ask DeeBee/DB a question. </h5>
265
265
<br />
266
266
<h5>Examples...</h5>
267
- What is the latest minor version release for Oracle Database
267
+ ' What is the latest version of the Oracle Database?'
268
268
<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.'
270
270
<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'
272
274
<br />
273
275
'What is Oracle for Startups? Use Database'
274
276
<br />
275
277
<span>
276
278
<button onClick={() => (buttonState ? stopSession() : startSession())}>
277
279
{buttonState ? "Stop Session and Submit Question" : "Start session and Ask Question"}
278
280
</button>
279
- <br />
281
+
280
282
{/* <button onClick={requestFinalResult}>Request Final Result</button> */}
281
- <button onClick={mirrorMe}>Switch To "Mirror Me"</button>
282
283
<button
283
284
onClick={() => {
284
285
buttonState && stopSession();
@@ -287,13 +288,14 @@ function App() {
287
288
>
288
289
Clear screen
289
290
</button>
290
- <input
291
+ <br />< input
291
292
type="text"
292
293
value={textFieldValue}
293
294
onChange={(e) => setTextFieldValue(e.target.value)}
294
295
placeholder="Enter your question"
295
296
/>
296
297
<button onClick={() => handleCallSelectAI(textFieldValue)}>Call Select AI</button>
298
+ <br /><button onClick={mirrorMe}>Switch To "Mirror Me"</button>
297
299
</span>
298
300
299
301
</div>
You can’t perform that action at this time.
0 commit comments