Skip to content

Commit af763e5

Browse files
committed
added slider for intent detection threshold
1 parent 776936c commit af763e5

8 files changed

+21
-8
lines changed

docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ services:
2020
container_name: mongodb
2121
image: mongo
2222
hostname: mongodb
23+
ports:
24+
- "27017:27017"
2325
volumes:
2426
- mongodbdata:/data
2527

frontend/.angular-cli.json

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"styles.scss"
2323
],
2424
"scripts": [],
25+
2526
"environmentSource": "environments/environment.ts",
2627
"environments": {
2728
"dev": "environments/environment.ts",

frontend/package-lock.json

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"@angular/platform-browser-dynamic": "^5.2.0",
2626
"@angular/router": "^5.2.0",
2727
"core-js": "^2.4.1",
28+
"hammerjs": "^2.0.8",
2829
"rxjs": "^5.5.6",
2930
"zone.js": "^0.8.19"
3031
},

frontend/src/app/agent/agent.module.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ MatOptionModule,MatSelectModule,MatCheckboxModule,MatButtonModule} from '@angula
1515
import {MatGridListModule} from '@angular/material/grid-list';
1616
import {MatDividerModule} from '@angular/material/divider';
1717
import {MatExpansionModule} from '@angular/material/expansion';
18+
import {MatSliderModule} from '@angular/material/slider';
19+
1820
/* Material UI imports ends here */
1921

2022

@@ -53,7 +55,8 @@ import { AutofocusDirective } from '../directives/autofocus.directive';
5355
MatButtonModule,
5456
MatGridListModule,
5557
MatDividerModule,
56-
MatExpansionModule
58+
MatExpansionModule,
59+
MatSliderModule
5760

5861
],
5962
declarations: [IntentsComponent, IntentComponent, TrainComponent, SettingsComponent, ChatComponent,AutofocusDirective],

frontend/src/app/agent/settings/settings.component.html

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
<mat-card fxLayout="column">
2-
2+
33
<form [formGroup]="config_form" (submit)="save_config()">
4-
<mat-form-field style="width: 40%;">
5-
<input type="number" matInput formControlName="confidence_threshold" placeholder="Intent Detection confidence threshold" max=1 min=0>
6-
</mat-form-field>
4+
<mat-slider min="0.1" max="1.0" step="0.05" formControlName="confidence_threshold" (change)="threshold_value_changed()"></mat-slider>
5+
Intent Detection threshold = <b>{{config_form.value.confidence_threshold | percent}}</b>
76
<br>
8-
<mat-card-actions>
9-
<button mat-raised-button color="accent">Save</button>
10-
</mat-card-actions>
117
</form>
128

139
<br>

frontend/src/app/agent/settings/settings.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ export class SettingsComponent implements OnInit {
2626
)
2727
}
2828

29+
threshold_value_changed(){
30+
this.save_config()
31+
}
2932
save_config(){
3033
this.agent_service.update_config(this.config_form.value)
3134
console.log(this.config_form.value)

frontend/src/main.ts

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
44
import { AppModule } from './app/app.module';
55
import { environment } from './environments/environment';
66

7+
import 'hammerjs';
8+
79
if (environment.production) {
810
enableProdMode();
911
}

0 commit comments

Comments
 (0)