Spaces:
Running
Running
File size: 11,300 Bytes
8f934bf 8fef57d 8f934bf fd66c57 8f934bf 8fef57d 8f934bf 71017b1 23aa799 71017b1 27c784e 71017b1 27c784e 71017b1 27c784e 71017b1 27c784e 71017b1 27c784e 71017b1 27c784e 71017b1 23aa799 71017b1 23aa799 71017b1 fca5702 71017b1 fca5702 71017b1 8fef57d 71017b1 23aa799 71017b1 8fef57d 71017b1 23aa799 71017b1 8f934bf 23aa799 8f934bf 8fef57d 8f934bf 8fef57d 8f934bf fd66c57 8f934bf 8fef57d 8f934bf 27c784e 23aa799 27c784e 23aa799 27c784e 23aa799 8f934bf fd66c57 8f934bf fd66c57 8f934bf 23aa799 8f934bf 3b93905 |
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 |
import { Component, inject, OnInit } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { MatCardModule } from '@angular/material/card';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatInputModule } from '@angular/material/input';
import { MatSelectModule } from '@angular/material/select';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
import { MatSnackBar, MatSnackBarModule } from '@angular/material/snack-bar';
import { MatExpansionModule } from '@angular/material/expansion';
import { ApiService, Environment } from '../../services/api.service';
import { EnvironmentService } from '../../services/environment.service';
@Component({
selector: 'app-environment',
standalone: true,
imports: [
CommonModule,
FormsModule,
MatCardModule,
MatFormFieldModule,
MatInputModule,
MatSelectModule,
MatButtonModule,
MatIconModule,
MatProgressSpinnerModule,
MatSnackBarModule,
MatExpansionModule
],
template: `
<div class="environment-container">
<mat-card>
<mat-card-header>
<mat-card-title>
<mat-icon>settings</mat-icon>
Environment Configuration
</mat-card-title>
</mat-card-header>
<mat-card-content>
@if (isGPTMode()) {
<mat-card class="info-card">
<mat-card-content>
<mat-icon>info</mat-icon>
<div>
<strong>{{ environment.work_mode === 'gpt4o' ? 'GPT-4o' : 'GPT-4o Mini' }} Mode</strong>
<p>This mode uses OpenAI's API which has usage-based pricing.</p>
<p>Approximate cost: {{ environment.work_mode === 'gpt4o' ? '$0.01-0.03' : '$0.001-0.003' }} per conversation turn.</p>
</div>
</mat-card-content>
</mat-card>
}
<form (ngSubmit)="save()" #envForm="ngForm">
<mat-form-field appearance="outline" class="full-width">
<mat-label>Work Mode</mat-label>
<mat-select
name="workMode"
[(ngModel)]="environment.work_mode"
(selectionChange)="onWorkModeChange()"
required
[disabled]="loading"
>
<mat-option value="hfcloud">HF Cloud</mat-option>
<mat-option value="cloud">Cloud</mat-option>
<mat-option value="on-premise">On-Premise</mat-option>
<mat-option value="gpt4o">GPT-4o</mat-option>
<mat-option value="gpt4o-mini">GPT-4o Mini</mat-option>
</mat-select>
<mat-icon matPrefix>cloud</mat-icon>
</mat-form-field>
<mat-form-field appearance="outline" class="full-width">
<mat-label>{{ getTokenLabel() }}</mat-label>
<input
matInput
type="password"
name="cloudToken"
[(ngModel)]="environment.cloud_token"
[disabled]="loading || environment.work_mode === 'on-premise'"
[placeholder]="getTokenPlaceholder()"
>
<mat-icon matPrefix>vpn_key</mat-icon>
<mat-hint>{{ isGPTMode() ? 'Required for OpenAI API access' : 'Required for HF Cloud and Cloud modes' }}</mat-hint>
</mat-form-field>
<mat-form-field appearance="outline" class="full-width">
<mat-label>Spark Endpoint</mat-label>
<input
matInput
type="url"
name="sparkEndpoint"
[(ngModel)]="environment.spark_endpoint"
[required]="!isGPTMode()"
[disabled]="loading || isGPTMode()"
placeholder="https://spark-service.example.com"
>
<mat-icon matPrefix>link</mat-icon>
<button
mat-icon-button
matSuffix
type="button"
(click)="testConnection()"
[disabled]="loading || !environment.spark_endpoint || isGPTMode()"
matTooltip="Test Connection"
>
<mat-icon>wifi_tethering</mat-icon>
</button>
@if (isGPTMode()) {
<mat-hint>Not required for GPT mode</mat-hint>
}
</mat-form-field>
<mat-expansion-panel class="prompt-panel">
<mat-expansion-panel-header>
<mat-panel-title>
<mat-icon>psychology</mat-icon>
Internal System Prompt
</mat-panel-title>
<mat-panel-description>
Advanced configuration for LLM
</mat-panel-description>
</mat-expansion-panel-header>
<mat-form-field appearance="outline" class="full-width">
<mat-label>Internal Prompt</mat-label>
<textarea
matInput
name="internalPrompt"
[(ngModel)]="environment.internal_prompt"
[disabled]="loading"
rows="10"
placeholder="Enter internal system prompt..."
></textarea>
<mat-hint>This prompt will be prepended to all project prompts</mat-hint>
</mat-form-field>
</mat-expansion-panel>
<div class="form-actions">
<button
mat-raised-button
color="primary"
type="submit"
[disabled]="loading || !envForm.valid || saving"
>
@if (saving) {
<mat-spinner diameter="20"></mat-spinner>
Saving...
} @else {
<mat-icon>save</mat-icon>
Save
}
</button>
<button
mat-raised-button
type="button"
(click)="reloadFromSpark()"
[disabled]="loading || isGPTMode()"
>
<mat-icon>refresh</mat-icon>
Reload from Spark
</button>
</div>
</form>
</mat-card-content>
</mat-card>
</div>
`,
styles: [`
.environment-container {
max-width: 800px;
margin: 0 auto;
}
mat-card-header {
margin-bottom: 24px;
mat-card-title {
display: flex;
align-items: center;
gap: 8px;
font-size: 24px;
mat-icon {
font-size: 28px;
width: 28px;
height: 28px;
}
}
}
.info-card {
margin-bottom: 20px;
background-color: #e3f2fd;
mat-card-content {
display: flex;
gap: 16px;
align-items: flex-start;
mat-icon {
color: #1976d2;
margin-top: 4px;
}
p {
margin: 4px 0;
font-size: 14px;
}
}
}
.full-width {
width: 100%;
margin-bottom: 20px;
}
.prompt-panel {
margin-bottom: 20px;
mat-expansion-panel-header {
mat-panel-title {
display: flex;
align-items: center;
gap: 8px;
mat-icon {
color: #666;
}
}
}
}
.form-actions {
display: flex;
gap: 16px;
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid #e0e0e0;
button {
display: flex;
align-items: center;
gap: 8px;
mat-spinner {
margin-right: 8px;
}
}
}
::ng-deep {
.mat-mdc-form-field-icon-prefix {
padding-right: 12px;
}
.mat-mdc-progress-spinner {
--mdc-circular-progress-active-indicator-color: white;
}
.mat-expansion-panel-body {
padding: 16px 0 !important;
}
}
`]
})
export class EnvironmentComponent implements OnInit {
private apiService = inject(ApiService);
private snackBar = inject(MatSnackBar);
private environmentService = inject(EnvironmentService);
environment: Environment = {
work_mode: 'hfcloud',
cloud_token: '',
spark_endpoint: '',
internal_prompt: ''
};
loading = true;
saving = false;
ngOnInit() {
this.loadEnvironment();
}
loadEnvironment() {
this.loading = true;
this.apiService.getEnvironment().subscribe({
next: (env) => {
this.environment = env;
this.loading = false;
},
error: (err) => {
this.snackBar.open('Failed to load environment configuration', 'Close', {
duration: 5000,
panelClass: 'error-snackbar'
});
this.loading = false;
}
});
}
getTokenLabel(): string {
switch(this.environment.work_mode) {
case 'gpt4o':
case 'gpt4o-mini':
return 'OpenAI API Key';
case 'hfcloud':
case 'cloud':
return 'Cloud Token';
default:
return 'Cloud Token';
}
}
getTokenPlaceholder(): string {
switch(this.environment.work_mode) {
case 'gpt4o':
case 'gpt4o-mini':
return 'Enter OpenAI API key (sk-...)';
case 'hfcloud':
case 'cloud':
return 'Enter cloud token';
default:
return 'Enter cloud token';
}
}
isGPTMode(): boolean {
return this.environment.work_mode === 'gpt4o' || this.environment.work_mode === 'gpt4o-mini';
}
onWorkModeChange() {
if (this.environment.work_mode === 'on-premise') {
this.environment.cloud_token = '';
}
}
save() {
this.saving = true;
this.apiService.updateEnvironment(this.environment).subscribe({
next: () => {
// Environment service'i güncelle
this.environmentService.updateEnvironment(this.environment);
this.snackBar.open('Environment configuration saved successfully', 'Close', {
duration: 3000
});
this.saving = false;
},
error: (err) => {
this.snackBar.open(
err.error?.detail || 'Failed to save configuration',
'Close',
{ duration: 5000, panelClass: 'error-snackbar' }
);
this.saving = false;
}
});
}
testConnection() {
this.snackBar.open('Testing connection to Spark endpoint...', undefined, {
duration: 2000
});
// TODO: Implement actual connection test
setTimeout(() => {
this.snackBar.open('Connection successful!', 'Close', {
duration: 3000
});
}, 2000);
}
reloadFromSpark() {
if (this.isGPTMode()) {
return;
}
this.snackBar.open('Reloading configuration from Spark...', undefined, {
duration: 2000
});
setTimeout(() => {
this.loadEnvironment();
this.snackBar.open('Configuration reloaded', 'Close', {
duration: 3000
});
}, 1000);
}
} |