Spaces:
Running
Running
File size: 6,922 Bytes
9aee46b 0692db7 9aee46b 0692db7 9aee46b 0692db7 9aee46b 0692db7 9aee46b 0692db7 80286f8 0692db7 80286f8 0692db7 80286f8 0692db7 80286f8 0692db7 9aee46b 0692db7 9aee46b 0692db7 9aee46b 0692db7 a039d0d 80286f8 a039d0d 80286f8 a039d0d 80286f8 a039d0d 80286f8 a039d0d 80286f8 9aee46b 0692db7 9aee46b 80286f8 9aee46b 0692db7 9aee46b 0692db7 9aee46b 0692db7 9aee46b 0692db7 9aee46b 0692db7 9aee46b 80286f8 9aee46b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
import React, { useState } from 'react';
import {
Paper,
Typography,
Grid,
TextField,
Button,
Divider,
MenuItem,
Select,
FormControl,
InputLabel
} from '@material-ui/core';
// Props:
// - imageBase64: data URL string of the currently uploaded image (preferred for searchType=image)
function OpenAIChat({ imageBase64 }) {
const [apiKey, setApiKey] = useState('');
const [prompt, setPrompt] = useState('');
const [response, setResponse] = useState('');
const [loading, setLoading] = useState(false);
const [error, setError] = useState('');
// Vision RAG parameters
const [searchType, setSearchType] = useState('image');
const [objectId, setObjectId] = useState('');
const [className, setClassName] = useState('');
const [nResults, setNResults] = useState(5);
const onSend = async () => {
setError('');
setResponse('');
const q = (prompt || '').trim();
if (!q) { setError('Please enter a question.'); return; }
// Build request body for /api/vision-rag/query
const body = {
userQuery: q,
searchType: searchType,
n_results: Number(nResults) || 5,
};
if (apiKey) body.api_key = apiKey;
if (searchType === 'image') {
if (!imageBase64) { setError('Image is required. Please upload an image first.'); return; }
body.image = imageBase64;
} else if (searchType === 'object') {
if (!objectId.trim()) { setError('Please enter an objectId.'); return; }
body.objectId = objectId.trim();
} else if (searchType === 'class') {
if (!className.trim()) { setError('Please enter a class_name.'); return; }
body.class_name = className.trim();
}
setLoading(true);
try {
const res = await fetch('/api/vision-rag/query', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
credentials: 'include',
body: JSON.stringify(body)
});
if (!res.ok) {
let txt = await res.text();
try { txt = JSON.stringify(JSON.parse(txt), null, 2); } catch {}
throw new Error(txt);
}
const data = await res.json();
const meta = `Model: ${data.model || '-'} | Latency: ${data.latency_sec || '-'}s`;
// Format search results
let retrievedText = '';
if (data.retrieved && data.retrieved.length > 0) {
retrievedText = '\n\nSearch Results:\n';
data.retrieved.forEach((item, index) => {
retrievedText += `${index + 1}. ID: ${item.id || '-'}\n`;
if (item.meta) {
retrievedText += ` Class: ${item.meta.class || '-'}\n`;
retrievedText += ` Confidence: ${item.meta.confidence || '-'}\n`;
}
retrievedText += ` Similarity: ${item.distance ? item.distance.toFixed(4) : '-'}\n`;
});
}
setResponse((data.answer || '(No response)') + retrievedText + '\n\n---\n' + meta);
} catch (e) {
setError('Error: ' + e.message);
} finally {
setLoading(false);
}
};
const onClear = () => {
setPrompt('');
setResponse('');
setError('');
};
return (
<Paper style={{ padding: 16 }}>
<Typography variant="h5" gutterBottom>
Vision RAG (LangChain)
</Typography>
<Typography variant="body2" color="textSecondary" gutterBottom>
If OPENAI_API_KEY is set on the server, API Key is optional. Select a search type and send a question to get answers based on context retrieved from the vector DB.
</Typography>
<Grid container spacing={2}>
<Grid item xs={12} md={6}>
<FormControl fullWidth variant="outlined" size="small">
<InputLabel id="search-type-label">Search Type</InputLabel>
<Select
labelId="search-type-label"
value={searchType}
onChange={(e) => setSearchType(e.target.value)}
label="Search Type"
>
<MenuItem value="image">image (current upload)</MenuItem>
<MenuItem value="object">object (objectId)</MenuItem>
<MenuItem value="class">class (class_name)</MenuItem>
</Select>
</FormControl>
</Grid>
<Grid item xs={12} md={6}>
<TextField
label="OpenAI API Key (optional)"
value={apiKey}
onChange={(e) => setApiKey(e.target.value)}
fullWidth
variant="outlined"
size="small"
type="password"
placeholder="sk-..."
/>
</Grid>
{searchType === 'object' && (
<Grid item xs={12} md={6}>
<TextField
label="objectId"
value={objectId}
onChange={(e) => setObjectId(e.target.value)}
fullWidth
variant="outlined"
size="small"
/>
</Grid>
)}
{searchType === 'class' && (
<Grid item xs={12} md={6}>
<TextField
label="class_name"
value={className}
onChange={(e) => setClassName(e.target.value)}
fullWidth
variant="outlined"
size="small"
placeholder="e.g. person, car, dog"
/>
</Grid>
)}
<Grid item xs={12} md={6}>
<TextField
label="n_results"
value={nResults}
onChange={(e) => setNResults(e.target.value)}
fullWidth
variant="outlined"
size="small"
type="number"
inputProps={{ min: 1, max: 50 }}
/>
</Grid>
<Grid item xs={12}>
<TextField
label="User Question"
value={prompt}
onChange={(e) => setPrompt(e.target.value)}
fullWidth
multiline
rows={4}
variant="outlined"
placeholder={searchType === 'image' ? 'Answer based on the uploaded image' : 'Answer using the retrieved object context'}
/>
</Grid>
{error && (
<Grid item xs={12}>
<Typography color="error">{error}</Typography>
</Grid>
)}
<Grid item xs={12}>
<div style={{ display: 'flex', gap: 8 }}>
<Button color="primary" variant="contained" onClick={onSend} disabled={loading}>
{loading ? 'Sending...' : 'Send Question'}
</Button>
<Button variant="outlined" onClick={onClear}>Clear</Button>
</div>
</Grid>
<Grid item xs={12}>
<Divider style={{ margin: '12px 0' }} />
<Typography variant="subtitle2" color="textSecondary">Response</Typography>
<pre style={{ whiteSpace: 'pre-wrap', fontFamily: 'ui-monospace, monospace' }}>{response}</pre>
</Grid>
</Grid>
</Paper>
);
}
export default OpenAIChat;
|