Spaces:
Paused
Paused
File size: 13,790 Bytes
4279593 25f9610 4279593 25f9610 4279593 25f9610 4279593 2bab159 4279593 25f9610 4279593 25f9610 4279593 |
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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
import React, { useState, useRef } from 'react';
import { useNavigate } from 'react-router-dom';
import Box from '@mui/material/Box';
import Slider from '@mui/material/Slider';
import Stack from '@mui/material/Stack';
import Button from '@mui/material/Button';
import IconButton from '@mui/material/IconButton';
import Snackbar from '@mui/material/Snackbar';
import Alert from '@mui/material/Alert';
import './IntialSetting.css';
import { FaTimes, FaEye, FaEyeSlash } from 'react-icons/fa';
function IntialSetting(props) {
// Controlled states for Model Provider and sliders
const [selectedProvider, setSelectedProvider] = useState("OpenAI");
const [modelTemperature, setModelTemperature] = useState(0.0);
const [modelTopP, setModelTopP] = useState(1.0);
const [showPassword, setShowPassword] = useState(false);
// Snackbar state for notifications
const [snackbar, setSnackbar] = useState({
open: false,
message: "",
severity: "success", // "success", "error", "info", "warning"
});
// Ref for the form element
const formRef = useRef(null);
// React Router hook to navigate programmatically
const navigate = useNavigate();
// Define model options
const modelOptions = {
OpenAI: {
"GPT-4 Turbo": "gpt-4-turbo",
"GPT-4o": "gpt-4o",
"GPT-4o Latest": "gpt-4o-2024-11-20",
"GPT-4o Mini": "gpt-4o-mini",
"ChatGPT": "chatgpt-4o-latest",
},
Anthropic: {
"Claude 3.5 Sonnet": "claude-3-5-sonnet-20241022",
"Claude 3.5 Haiku": "claude-3-5-haiku-20241022",
"Claude 3 Opus": "claude-3-opus-20240229",
"Claude 3 Sonnet": "claude-3-sonnet-20240229",
"Claude 3 Haiku": "claude-3-haiku-20240307",
},
Google: {
"Gemini 1.5 Pro": "gemini-1.5-pro",
"Gemini 1.5 Flash": "gemini-1.5-flash",
"Gemini 2.0 Flash Lite": "gemini-2.0-flash-lite-preview-02-05",
"Gemini 2.0 Flash Experimental": "gemini-2.0-flash-exp",
"Gemini 2.0 Flash": "gemini-2.0-flash",
"Gemini 2.0 Pro Experimental": "gemini-2.0-pro-exp-02-05",
},
XAI: {
"Grok-2": "grok-2-latest",
"Grok Beta": "grok-beta",
},
};
// Reset handler: resets both the form (uncontrolled fields) and controlled states
const handleReset = (e) => {
e.preventDefault();
if (formRef.current) {
formRef.current.reset();
}
setSelectedProvider("OpenAI");
setModelTemperature(0.0);
setModelTopP(1.0);
};
// Snackbar close handler
const handleSnackbarClose = (event, reason) => {
if (reason === 'clickaway') return;
setSnackbar((prev) => ({ ...prev, open: false }));
};
// Save handler: validates the form, shows notifications, calls the parent's callback
// to update the underlying page (spinner/initializing text), sends the API request, and
// navigates to /AiPage when the backend returns success.
const handleSave = async (e) => {
e.preventDefault();
const form = formRef.current;
// Retrieve values from form fields using their name attribute
const modelProvider = form.elements["model-provider"].value;
const modelName = form.elements["model-name"].value;
const modelAPIKeys = form.elements["model-api"].value;
const braveAPIKey = form.elements["brave-api"].value;
const proxyList = form.elements["proxy-list"].value;
// const neo4jURL = form.elements["neo4j-url"].value;
// const neo4jUsername = form.elements["neo4j-username"].value;
// const neo4jPassword = form.elements["neo4j-password"].value;
// Validate required fields and collect missing field names
const missingFields = [];
if (!modelProvider || modelProvider.trim() === "") missingFields.push("Model Provider");
if (!modelName || modelName.trim() === "") missingFields.push("Model Name");
if (!modelAPIKeys || modelAPIKeys.trim() === "") missingFields.push("Model API Key");
if (!braveAPIKey || braveAPIKey.trim() === "") missingFields.push("Brave Search API Key");
// if (!neo4jURL || neo4jURL.trim() === "") missingFields.push("Neo4j URL");
// if (!neo4jUsername || neo4jUsername.trim() === "") missingFields.push("Neo4j Username");
// if (!neo4jPassword || neo4jPassword.trim() === "") missingFields.push("Neo4j Password");
// If any required fields are missing, show an error notification
if (missingFields.length > 0) {
setSnackbar({
open: true,
message: "Please fill in the following required fields: " + missingFields.join(", "),
severity: "error",
});
return;
}
// Build the JSON payload
const payload = {
"Model_Provider": modelProvider.toLowerCase(),
"Model_Name": modelName,
"Model_API_Keys": modelAPIKeys,
"Brave_Search_API_Key": braveAPIKey,
// "Neo4j_URL": neo4jURL,
// "Neo4j_Username": neo4jUsername,
// "Neo4j_Password": neo4jPassword,
"Model_Temperature": modelTemperature,
"Model_Top_P": modelTopP,
};
// Include Proxy List if provided
if (proxyList && proxyList.trim() !== "") {
payload["Proxy_List"] = proxyList;
}
// If opened from AiPage, show "Re-applying settings..." info notification with spinner
if (props.fromAiPage) {
setSnackbar({
open: true,
message: (
<Box mt={1} display="flex" alignItems="center">
<Box className="re-applying-settings-custom-spinner" />
<Box ml={1} className="re-applying-settings-text">
<span>
Re-applying settings. This may take a few minutes...
</span>
</Box>
</Box>
),
severity: "info",
});
} else {
// Original immediate success notification if opened from Home/App
setSnackbar({
open: true,
message: "Settings saved successfully!",
severity: "success",
});
// Call the parent's callback to change the underlying page's content (spinner/text)
if (props.onInitializationStart) {
props.onInitializationStart();
}
}
// Send the payload to the backend
try {
const response = await fetch("/settings", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(payload),
});
if (response.ok) {
const data = await response.json();
// When the backend returns {"success": true}, navigate to /AiPage
if (data.success === true) {
// If from AiPage, show the final "Settings saved successfully!" success notification
if (props.fromAiPage) {
setSnackbar({
open: true,
message: "Settings saved successfully!",
severity: "success",
});
}
navigate("/AiPage");
} else {
// If the response is OK but success is not true
setSnackbar({
open: true,
message: "Error saving settings. Please try again.",
severity: "error",
});
}
} else {
// If response is not OK, display error notification
setSnackbar({
open: true,
message: "Error saving settings. Please try again.",
severity: "error",
});
}
} catch (error) {
console.error("Error saving settings:", error);
// Show error notification
setSnackbar({
open: true,
message: "Error saving settings. Please try again.",
severity: "error",
});
}
};
return props.trigger ? (
<div className="showSetting" onClick={() => props.setTrigger(false)}>
<div className="showSetting-inner" onClick={(e) => e.stopPropagation()}>
<label className="setting-size">Settings</label>
<button className="close-btn" onClick={() => props.setTrigger(false)}>
<FaTimes />
</button>
<form ref={formRef}>
{/* Model Provider Selection */}
<div className="form-group">
<label htmlFor="model-provider">Model Provider</label>
<select
id="model-provider"
name="model-provider"
value={selectedProvider}
onChange={(e) => setSelectedProvider(e.target.value)}
>
{Object.keys(modelOptions).map(provider => (
<option key={provider} value={provider}>
{provider}
</option>
))}
</select>
</div>
{/* Model Name Selection */}
<div className="form-group">
<label htmlFor="model-name">Model Name</label>
<select id="model-name" name="model-name">
{Object.entries(modelOptions[selectedProvider]).map(
([displayName, backendName]) => (
<option key={backendName} value={backendName}>
{displayName}
</option>
)
)}
</select>
</div>
{/* API Key Inputs */}
<div className="form-group">
<label htmlFor="model-api">Model API Key</label>
<textarea
id="model-api"
name="model-api"
placeholder="Enter API Key, one per line"
></textarea>
</div>
<div className="form-group">
<label htmlFor="brave-api">Brave Search API Key</label>
<input
type="text"
id="brave-api"
name="brave-api"
placeholder="Enter API Key"
/>
</div>
{/* Proxy List */}
<div className="form-group">
<label htmlFor="proxy-list">Proxy List</label>
<textarea
id="proxy-list"
name="proxy-list"
placeholder="Enter proxies, one per line"
></textarea>
</div>
{/* Neo4j Configuration */}
{/* <div className="form-group">
<label htmlFor="neo4j-url">Neo4j URL</label>
<input
type="text"
id="neo4j-url"
name="neo4j-url"
placeholder="Enter Neo4j URL"
/>
</div>
<div className="form-group">
<label htmlFor="neo4j-username">Neo4j Username</label>
<input
type="text"
id="neo4j-username"
name="neo4j-username"
placeholder="Enter Username"
/>
</div>
<div className="form-group">
<label htmlFor="neo4j-password">Neo4j Password</label>
<div className="password-wrapper">
<input
type={showPassword ? "text" : "password"}
id="neo4j-password"
name="neo4j-password"
placeholder="Enter Password"
/>
<IconButton
onClick={() => setShowPassword(prev => !prev)}
className="password-toggle"
sx={{
color: "white", // Change the color of the icon
p: 0, // Remove internal padding
m: 0 // Remove any margin
}}
>
{showPassword ? <FaEyeSlash /> : <FaEye />}
</IconButton>
</div>
</div> */}
{/* Model Temperature and Top-P */}
<div className="form-group">
<div className="sliders-container">
<div className="slider-item">
<label htmlFor="temperature">Temperature</label>
<Slider
id="temperature"
value={modelTemperature}
onChange={(e, newValue) => setModelTemperature(newValue)}
step={0.05}
min={0.0}
max={1.0}
valueLabelDisplay="auto"
sx={{ width: '100%', color: 'success.main' }}
/>
</div>
<div className="slider-item">
<label htmlFor="top-p">Top-P</label>
<Slider
id="top-p"
value={modelTopP}
onChange={(e, newValue) => setModelTopP(newValue)}
step={0.05}
min={0.0}
max={1.0}
valueLabelDisplay="auto"
sx={{ width: '100%', color: 'success.main' }}
/>
</div>
</div>
</div>
{/* Buttons */}
<Stack direction="row" spacing={2} sx={{ justifyContent: 'flex-end' }}>
<Button
type="button"
className="reset-btn"
sx={{ color: "#2196f3" }}
onClick={handleReset}
>
Reset
</Button>
<Button
type="button"
variant="contained"
color="success"
className="save-btn"
onClick={handleSave}
>
Save
</Button>
</Stack>
</form>
{/* Notifications */}
<Snackbar
open={snackbar.open}
autoHideDuration={snackbar.severity === 'success' ? 3000 : null}
onClose={handleSnackbarClose}
anchorOrigin={{ vertical: 'top', horizontal: 'center' }}
>
<Alert onClose={handleSnackbarClose} severity={snackbar.severity} variant="filled" sx={{ width: '100%' }}>
{snackbar.message}
</Alert>
</Snackbar>
{props.children}
</div>
</div>
) : null;
}
export default IntialSetting; |