File size: 9,055 Bytes
6a50e97 |
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 |
import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/card'
import { Button } from '@/components/ui/button'
import { Label } from '@/components/ui/label'
import { Switch } from '@/components/ui/switch'
import { Badge } from '@/components/ui/badge'
import {
Settings as SettingsIcon,
Server,
Brain,
Palette,
Shield,
Info
} from 'lucide-react'
export function Settings() {
return (
<div className="min-h-screen bg-background">
{/* Header */}
<div className="border-b">
<div className="flex h-14 items-center px-6">
<div className="flex items-center gap-2">
<SettingsIcon className="h-5 w-5" />
<h1 className="text-lg font-semibold">Settings</h1>
</div>
</div>
</div>
<div className="flex-1 p-6">
<div className="max-w-4xl mx-auto space-y-6">
{/* Server Settings */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<Server className="h-5 w-5" />
Server Configuration
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<Label className="text-sm font-medium">Backend URL</Label>
<div className="mt-1 p-2 bg-muted rounded-md text-sm font-mono">
{window.location.origin}
</div>
</div>
<div>
<Label className="text-sm font-medium">Frontend URL</Label>
<div className="mt-1 p-2 bg-muted rounded-md text-sm font-mono">
{window.location.origin}
</div>
</div>
</div>
<div className="pt-2 border-t">
<div className="flex items-center justify-between">
<div>
<Label className="text-sm font-medium">Auto-connect on startup</Label>
<p className="text-xs text-muted-foreground">Automatically connect to backend when app starts</p>
</div>
<Switch defaultChecked />
</div>
</div>
</CardContent>
</Card>
{/* Model Settings */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<Brain className="h-5 w-5" />
Model Preferences
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex items-center justify-between">
<div>
<Label className="text-sm font-medium">Auto-load last used model</Label>
<p className="text-xs text-muted-foreground">Automatically load the last used model on startup</p>
</div>
<Switch />
</div>
<div className="flex items-center justify-between">
<div>
<Label className="text-sm font-medium">Show model thinking process</Label>
<p className="text-xs text-muted-foreground">Display thinking content for supported models</p>
</div>
<Switch defaultChecked />
</div>
<div className="flex items-center justify-between">
<div>
<Label className="text-sm font-medium">Confirm model loading</Label>
<p className="text-xs text-muted-foreground">Show confirmation dialog before downloading models</p>
</div>
<Switch defaultChecked />
</div>
</CardContent>
</Card>
{/* Interface Settings */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<Palette className="h-5 w-5" />
Interface
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex items-center justify-between">
<div>
<Label className="text-sm font-medium">Dark mode</Label>
<p className="text-xs text-muted-foreground">Use dark theme for the interface</p>
</div>
<Switch />
</div>
<div className="flex items-center justify-between">
<div>
<Label className="text-sm font-medium">Compact mode</Label>
<p className="text-xs text-muted-foreground">Use smaller spacing for more content</p>
</div>
<Switch />
</div>
<div className="flex items-center justify-between">
<div>
<Label className="text-sm font-medium">Show sample prompts</Label>
<p className="text-xs text-muted-foreground">Display quick start prompts in playground</p>
</div>
<Switch defaultChecked />
</div>
</CardContent>
</Card>
{/* Privacy Settings */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<Shield className="h-5 w-5" />
Privacy & Data
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="p-3 bg-green-50 border border-green-200 rounded-md">
<div className="flex items-center gap-2 mb-2">
<Shield className="h-4 w-4 text-green-600" />
<span className="text-sm font-medium text-green-800">Local Processing</span>
</div>
<p className="text-xs text-green-700">
All AI processing happens locally on your machine. No data is sent to external servers.
</p>
</div>
<div className="flex items-center justify-between">
<div>
<Label className="text-sm font-medium">Save conversation history</Label>
<p className="text-xs text-muted-foreground">Store conversations locally for reference</p>
</div>
<Switch />
</div>
<div className="flex items-center justify-between">
<div>
<Label className="text-sm font-medium">Save system prompts</Label>
<p className="text-xs text-muted-foreground">Remember custom system prompts</p>
</div>
<Switch defaultChecked />
</div>
</CardContent>
</Card>
{/* System Information */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<Info className="h-5 w-5" />
System Information
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<Label className="text-sm font-medium">Platform</Label>
<div className="mt-1 flex items-center gap-2">
<Badge variant="outline">Local</Badge>
<span className="text-sm text-muted-foreground">Privacy-focused AI</span>
</div>
</div>
<div>
<Label className="text-sm font-medium">Version</Label>
<div className="mt-1">
<Badge variant="outline">v1.0.0</Badge>
</div>
</div>
</div>
<div className="pt-2 border-t">
<div className="flex items-center justify-between">
<div>
<p className="text-sm font-medium">Storage Location</p>
<p className="text-xs text-muted-foreground font-mono">~/.edge-llm/models/</p>
</div>
<Button variant="outline" size="sm">
Open Folder
</Button>
</div>
</div>
</CardContent>
</Card>
{/* Actions */}
<Card>
<CardHeader>
<CardTitle>Actions</CardTitle>
</CardHeader>
<CardContent>
<div className="flex gap-2">
<Button variant="outline">
Export Settings
</Button>
<Button variant="outline">
Import Settings
</Button>
<Button variant="outline">
Reset to Defaults
</Button>
</div>
</CardContent>
</Card>
</div>
</div>
</div>
)
}
|